/* ===== MENU DÉROULANT PLANNING ===== */
.filtrage-planning {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--fluidanse-beige);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filtrage-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filtrage-label {
    font-family: var(--font-titre);
    font-size: 1rem;
    color: var(--fluidanse-rouge);
    font-weight: 600;
    white-space: nowrap;
}

.select-filtre {
    min-width: 250px;
    padding: 0.7rem 1rem;
    font-family: var(--font-texte);
    font-size: 0.9rem;
    color: var(--fluidanse-rouge);
    background: white;
    border: 2px solid var(--fluidanse-orange);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8312F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.select-filtre:hover {
    border-color: var(--fluidanse-rouge);
    box-shadow: 0 4px 15px rgba(184, 49, 47, 0.2);
}

.select-filtre:focus {
    outline: none;
    border-color: var(--fluidanse-rouge);
    box-shadow: 0 0 0 3px rgba(184, 49, 47, 0.1);
}

.select-filtre optgroup {
    font-family: var(--font-titre);
    font-weight: 600;
    color: var(--fluidanse-rouge);
    background: var(--fluidanse-beige);
    font-size: 0.9rem;
}

.select-filtre option {
    font-family: var(--font-texte);
    padding: 0.5rem;
    color: #333;
    background: white;
}

.select-filtre option:hover {
    background: var(--fluidanse-beige);
}

.reset-filtrage {
    width: 35px;
    height: 35px;
    background: var(--fluidanse-rouge);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reset-filtrage:hover {
    background: var(--fluidanse-orange);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(232, 160, 130, 0.4);
}

.compteur-cours {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--fluidanse-rouge);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-texte);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 70px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(184, 49, 47, 0.2);
}

.compteur-cours #nombre-cours {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--fluidanse-orange);
}

.compteur-texte {
    font-size: 0.8rem;
    opacity: 0.9;
}

.compteur-cours.highlight {
    background: var(--fluidanse-orange);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(232, 160, 130, 0.4);
}

.compteur-cours.highlight #nombre-cours {
    color: white;
}

/* ===== ANIMATION DES BLOCS PLANNING ===== */
.planning-seance {
    transition: all 0.3s ease;
}

.planning-seance.highlight {
    background: rgba(184, 49, 47, 0.1) !important;
    border-left: 4px solid var(--fluidanse-rouge) !important;
    box-shadow: 0 4px 15px rgba(184, 49, 47, 0.2) !important;
    transform: translateX(5px);
}

.planning-seance.highlight .heure {
    color: var(--fluidanse-rouge) !important;
    font-weight: 700 !important;
}

.planning-seance.highlight .cours {
    color: var(--fluidanse-rouge) !important;
    font-weight: 600 !important;
}

.planning-seance.highlight .prof {
    color: var(--fluidanse-rouge) !important;
}

.planning-seance.fade-out {
    opacity: 0.3;
    transform: scale(0.98);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .filtrage-planning {
        padding: 0.8rem;
    }
    
    .filtrage-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .filtrage-label {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .select-filtre {
        min-width: 100%;
        max-width: 100%;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        padding-right: 35px;
    }
    
    .reset-filtrage {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .compteur-cours {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-width: 60px;
    }
    
    .compteur-cours #nombre-cours {
        font-size: 1rem;
    }
    
    .compteur-texte {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .filtrage-planning {
        margin-bottom: 1.5rem;
    }
    
    .filtrage-label {
        font-size: 0.8rem;
    }
    
    .select-filtre {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
        padding-right: 30px;
        background-size: 12px;
    }
    
    .compteur-cours {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        min-width: 50px;
    }
    
    .compteur-cours #nombre-cours {
        font-size: 0.9rem;
    }
    
    .compteur-texte {
        font-size: 0.6rem;
    }
} 