/* Conteneur principal */
.tag-filters-container {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

/* Zone du Slot (En-tête) */
.tag-filters-header {
    font-size: 1rem;
    color: #4b5563;
    border-bottom: 1px weight #f3f4f6;
    padding-bottom: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Liste des boutons */
.tag-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Style commun des boutons */
.tag-filters-list .btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f9fafb;
    color: #374151;
    text-decoration: none;
    border-radius: 50px;
    /* Style pilule */
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover : Légère élévation et changement de bordure */
.tag-filters-list .btn:hover {
    background-color: #ffffff;
    border-color: #6366f1;
    /* Indigo */
    color: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* État Actif (Sélectionné) */
.tag-filters-list .btn-active {
    background-color: #6366f1 !important;
    /* Indigo profond */
    color: #ffffff !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Optionnel : Style spécifique pour le bouton "Tout" s'il n'est pas actif */
.tag-filters-list .btn:first-child:not(.btn-active) {
    background-color: #f3f4f6;
    font-style: italic;
}