﻿.tab-container {
    width: 100%;
    margin: auto;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #ccc;
}

.tab-buttons button {
    flex: 1;
    padding: 10px;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.tab-buttons button.active {
    background-color: #447D9B;
    border-bottom: 3px solid #92d0f9;
    font-weight: 500;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #fff;
    border-top: none;
    background-color: #fff;
}

.tab-content.active {
    display: flex;
}
