/* Tab Styles */
.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ddd;
}

.tab-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #666;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px; /* Align with container border */
}

.tab-button:hover {
    color: #333;
}

.tab-button.active {
    color: #4a6fa5;
    border-bottom: 3px solid #4a6fa5;
}

.tab-content {
    display: none; /* Hidden by default */
}

.tab-content.active {
    display: block; /* Shown when active */
}
