/* SEO Optimization: Variation fixes moved from inline to external */

/* Améliorer la visibilité des sélections */
.js-select-option.field__select-option_selected {
    background-color: #e3f2fd !important;
    font-weight: bold !important;
}

/* Permettre l'ouverture des dropdowns quand cliqués */
.js-select.field_select-opened .js-select-options {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fermer seulement quand pas explicitement ouvert */
.js-select:not(.field_select-opened) .js-select-options {
    display: none !important;
}

/* Style pour les options sélectionnées */
.js-select-option.field__select-option_selected {
    position: relative;
}

.js-select-option.field__select-option_selected::after {
    content: "✓";
    position: absolute;
    right: 10px;
    color: #28a745;
    font-weight: bold;
}
