body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f4f4f9;
    width: 100%;
    padding: 0;
}

select {
    padding: 8px;
    font-size: 16px;
    margin-top: 10px;
}
/* Container for the tabs */
.tabs {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center;     /* Aligns items vertically */
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}

/* Styling for individual tab buttons */
.tab-button {
    background-color: #eee;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1em;
}

/* Hover effect */
.tab-button:hover {
    background-color: #ddd;
}

/* Active tab styling */
.tab-button.active {
    background-color: #3498db;
    color: white;
    border-bottom: 2px solid #3498db;
}

.content { display: none; font-size: 16px; line-height: 1.5; max-width: 600px; }
.active { display: block; }

/* Content Area */
.tab-content {
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
    display: none; /* By default, all content sections are hidden */
}

/* Class used by JavaScript to show content */
.tab-content.active {
    display: block; 
}

