/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body { 
  background-color: white;
  color: black;
  font-family: Verdana;
}

input[type="radio"] {
    display: none;
}


.tab-label {
    padding: 10px 15px;
    background-color: #ccc;
    cursor: pointer;
    border: 1px solid #000;
    display: block;
    justify-content: center;
}

input[type="radio"]:checked + .tab-label {
    background-color: #888; 
    border-bottom: 1px solid #000; /* Hide bottom border on active tab to blend with content */
}



.tab-content {
    width: auto;
    display: none;
    padding: 20px;
    background-color: #87cefa;
    border: 1px solid #000;
    margin-top: -1px;
}

input[type="radio"]:checked + .tab-label + .tab-content {
    white-space: wrap; 
    display: block;
}
.container {
  width: 1880px; /* Set a specific width for the container */
  border: 1px solid black; /* Optional: to visualize the container boundaries */
  padding: 10px;
  background-color: #87cefa;
}
  

input[type="radio"]:checked + .tab-label + .container {
    white-space: wrap; 
    display: block;
}
.box {
  width: 100px;
  border: 1px solid black;
  overflow-wrap: break-word; /* Allows long words to break and wrap */
}

