/* .tab-container {
    max-width: 900px;
    margin: 20px auto;
}

ul.nav-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border: 1px solid #ccc;
}

ul.nav-tabs li {
    flex: 1;
    text-align: center;
    background-color: #f5f5f5;
    border-right: 1px solid #ccc;
}

ul.nav-tabs li:last-child {
    border-right: none;
}

ul.nav-tabs li a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    font-weight: 600;
    color: black;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
}

ul.nav-tabs li a:hover {
    background-color: #3d2a9e;
    color: white;
} */
