/* Correction des onglets de recherche - Blanc pour actif au lieu de rose */

.search-tab {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-tab.search-tab-active,
.search-tab.active {
    background: white !important;
    color: #0A0E27 !important;
    border-color: white !important;
}

.search-tab.search-tab-active i,
.search-tab.active i {
    color: #30D54A !important;
}
