.main-tabs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.main-tab {
    padding: 15px 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.main-tab.active {
    color: rgb(75, 192, 192);
    font-weight: bold;
}

.main-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(75, 192, 192);
}

.main-tab-content {
    width: 100%;
}

.main-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-tab-pane.active {
    display: block;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .main-tab {
        text-align: center;
        padding: 15px 10px;
        border-bottom: 1px solid #e0e0e0;
    }

    .main-tab.active::after {
        display: none;
    }

    .main-tab.active {
        background-color: #f0f0f0;
    }
}

/* Ensure inner tabs are also responsive */
.tabs-container .tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tabs-container .tab {
    padding: 10px 20px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabs-container .tab.active {
    background-color: rgb(75, 192, 192);
    color: white;
}

@media (max-width: 480px) {
    .tabs-container .tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tabs-container .tab {
        text-align: center;
        margin-bottom: 10px;
    }
} 