body {
            font-family: Arial, sans-serif;
            margin: 20px;
}
button {
            padding: 5px 8px;
            font-size: 16px;
            cursor: pointer;
}
.button-yellow {
            background-color: #ffff99;
}
.headline {
            text-align: center;
            border: 1px solid #ccc; /* Border around the box */
            border-radius: 8px; /* Rounded corners */
            padding: 20px; /* Padding inside the box */
            text-align: center; /* Center the text */
            margin: 20px; /* Margin around the box */
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}
.line1 {
            font-size: 27px; /* Larger font size */
            margin: 0; /* Remove default margin */
}
.line2 {
            font-size: 9px; /* Smaller font size */
            margin: 0; /* Remove default margin */
            font-style: italic;
}
.line4 {
            font-size: 12px; /* Larger font size */
            margin-left: 0;
            margin-top: 20px;
            padding-left: 0;
            text-align: left;
            font-weight: bold;
}
.bullet-disc {
            margin-top: 0px;
            list-style-type: disc; /* Solid circle */
            padding-left: 10px;    /* Adjust padding as needed */
            font-weight: normal;
}
.tabs {
            display: flex;
            cursor: pointer;
            margin-bottom: 0px;
            max-width: 100%;  /* Ensure the image does not exceed the width of its container */
            justify-content: space-around; /* Distribute space evenly */
            border-bottom: 2px solid #ccc;
}
.tab {
            /* padding: 10px 20px; */
            flex: 1; /* Allow tabs to fill available space */
            padding: 15px 0; /* Vertical padding */
            border: 1px solid #ccc;
            border-radius: 25px 25px 0 0;
            background: #f1f1f1;
            margin-right: 1px;
            text-align: center; /* Center text */
}
.tab:hover {
            background: #e1e1e1;
}
.tab-content {
            border: 0px solid #ccc;
            border-radius: 0 0 5px 5px;
            padding: 0px;
            display: none;
}
.table-container {
            width: 100%;
            overflow: hidden; /* To contain the table */
}
table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed; /* Set fixed table layout */
}
th, td {
            border: 1px solid #ccc;
            padding: 15px;
            text-align: center;
            vertical-align: top;
}
.row1-col1 { background-color: #ff9999; } /* Light red */
.row1-col2 { background-color: #99ff99; } /* Light green */
.row1-col3 { background-color: #9999ff; } /* Light blue */
.row2-col1 { background-color: #ffff99; } /* Light yellow */
.row2-col2 { background-color: #ffcc99; } /* Light orange */
.row2-col3 { background-color: #cc99ff; } /* Light purple */
.responsive-image {
            max-width: 100%;  /* Ensure the image does not exceed the width of its container */
            height: auto;     /* Maintain the aspect ratio */
}
.centered-text {
            text-align: center;     /* Center text within the div */
            padding: 20px;         /* Optional padding */
            background-color: white; /* Optional background for contrast */
            border-radius: 8px;    /* Optional rounded corners */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
.image-container {
            display: flex; /* Use flexbox for layout */
            justify-content: center; /* Center images */
}
.image-container img {
            max-width: 100%; /* Set maximum width for images */
            height: auto;    /* Maintain aspect ratio */
            margin: 0 10px; /* Add some margin between images */
}
h1 {
            font-size: 1.8em; /* 40px/16=2.5em */
}
h2 {
            font-size: 1.45em; /* 30px/16=1.875em */
}
h3 {
            font-size: 1.00em; /* 30px/16=1.875em */
}
.inner-table {
            width: 100%;
            border: 0px solid #ccc;
            margin: auto;
}
.inner-table th {
            border: 0px solid #ccc;
            padding: 5px;
            background-color: white;
            text-align: center;
}        
.inner-table td {
            border: 0px solid #ccc;
            padding: 5px;
}
.year-table {
            width: 100%;
            border: 0px solid #ccc;
            margin: auto;
}
.year-table th {
            border: 1px solid #ccc;
            padding: 5px;
            background-color: white;
            text-align: center;
}
.year-table td {
            border: 0px solid #ccc;
            padding: 5px;
            background-color: white;
            text-align: center;
            font-size: 16px;
}
.cycle-table {
            width: 100%;
            border: 0px solid #ccc;
            margin: auto;
}
.cycle-table th {
            border: 1px solid #ccc;
            padding: 5px;
            text-align: center;
}
.cycle-table td {
            border: 0px solid #ccc;
            padding: 5px;
            text-align: center;
            font-size: 14px;
}
.cycle-table td:not(:empty):hover {
            background-color: #A9A9A9;
            cursor: pointer;
}
#sidePanel {
    width: 16%; /* Fixed width for the side panel */
    background-color: #f0f0f0;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    font-size: 1.0vw;
}

#mainContent {
    flex-grow: 1; /* Take the remaining space */
    padding: 20px;
    background-color: #fff;
}

#imageContainer {
    margin-left: 50px;
    flex-grow: 0;
    width: 90%;
}

#dropdown {
    position: relative;
    top: 100%;
    display: inline-block;
    width: 100%;
    text-align: center;
    right: auto;
}

#dropdown-content {
    display: none;
    position: absolute;
    background-color: #264653;
    min-width: 100%;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

#dropdown button {
    background-color: #2a9d8f;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

img {
    max-width: 100%;
    height: auto;
}
