/* Hauteur + padding forcé */
.select2-container--default .select2-selection--single {
    height: calc(2.25rem + 2px) !important;
    padding: .375rem .75rem !important;
    border-radius: .25rem !important;
}

/* Fond sombre forcé */
body.dark-mode .select2-container--default .select2-selection--single {
    background-color: #343a40 !important;
    border: 1px solid #6c757d !important;
    color: #fff !important;
}

/* Texte sélectionné */
body.dark-mode .select2-container--default 
.select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 1.8rem !important;
}

/* Placeholder */
body.dark-mode .select2-container--default 
.select2-selection--single .select2-selection__placeholder {
    color: #adb5bd !important;
}

/* Flèche */
body.dark-mode .select2-container--default 
.select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
}

/* Dropdown */
body.dark-mode .select2-container--default .select2-dropdown {
    background-color: #343a40 !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

/* Options */
body.dark-mode .select2-results__option {
    background-color: #343a40 !important;
    color: #fff !important;
}

body.dark-mode .select2-results__option--highlighted {
    background-color: #495057 !important;
    color: #fff !important;
}