/* Variables pour correspondre au thème de l'application */
:root {
    --select2-violet: #7215DB;
    --select2-violet-hover: #a98cff;
    --select2-orange: #FF6F20;
    --select2-orange-hover: #ff9547;
    --select2-dark-bg: #212529;
}

/* SINGLE SELECT SPECIFIC */
.select2-container--default .select2-selection--single {
    border: 1px solid var(--select2-orange-hover);
    height: 32px;
}
.select2-violet ~ .select2-container--default .select2-selection--single {
    border: 1px solid var(--select2-violet-hover);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
}
/* MULTI SELECT */
/* Champs pour taper */
.select2-selection.select2-selection--multiple.select2-violet {
    display: flex;
    flex-direction: column-reverse;
    background-color: transparent;
    border: none;
    padding-right: 0px;
}
/* liste éléments sélectionnés */
.select2-selection__rendered {
    margin: 0;
}
/* badge choisis */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-left: 0;
    margin-right: 2px;
    background-color: var(--select2-violet);
    border-color: transparent;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: var(--select2-violet);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove, 
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: white;
    border-color: transparent;
}
.select2-violet ~ .select2-container--default .select2-selection--multiple .select2-search--inline {
    /* Zone de recherche avec fond blanc - seul élément visible */
    /* order: -1; Place la recherche en premier */
    border: 1px solid var(--select2-violet);
    margin-left: 0;
    background-color: white;
    border-radius: 4px;
}
/* Offset dynamique (injecté en JS) pour afficher le dropdown sous le champ inline,
   tout en superposant la liste de badges */
:root {
    --select2-multi-overlay-offset: 0px;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-violet.select2-dropdown--below {
    margin-top: calc(-1 * var(--select2-multi-overlay-offset));
    z-index: 1060;
}
/* Focus sur la zone de recherche */
.select2-orange ~ .select2-container--default.select2-container--focus .select2-selection--multiple .select2-search--inline {
    border-color: var(--select2-orange-hover);
    box-shadow: 0 0 0 0.2rem rgba(255, 127, 39, 0.25);
}
.select2-violet ~ .select2-container--default.select2-container--focus .select2-selection--multiple .select2-search--inline {
    border-color: var(--select2-violet-hover);
    box-shadow: 0 0 0 0.2rem rgba(158, 39, 255, 0.25);
    background-color: white;
    line-height: 32px;
}
.select2-container .select2-search--inline .select2-search__field {
    height: 32px;
    line-height: 32px;
    margin-top: 0;
    margin-left: 0;
    padding-left: 5px;
}
/* ARROWS */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 28px;
    right: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 31px;
    margin-right: 25px;
}
.select2-orange ~ .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--select2-orange) transparent transparent;
    border-width: 7px 5px 0;
}
.select2-violet ~ .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--select2-violet) transparent transparent;
    border-width: 6px 5px 0 5px;
}
.select2-violet ~ .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 5px 7px;
    border-color: transparent transparent var(--select2-violet);
}

/* Theme sombre */
.select2-dropdown {
    border: 1px solid rgba(255, 127, 39, 0.3);
    border-radius: 4px;
    font-size: 14px;
}
.bg-dark .select2-dropdown {
    background-color: var(--select2-dark-bg);
    border: 1px solid var(--select2-violet);
    color: white;
}
.select2-dropdown.select2-orange {
    border: 1px solid rgba(255, 127, 39, 0.3) !important;
}
.select2-container--default .select2-results__option--selected {
    background-color: var(--select2-orange);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--select2-orange-hover);
}
.select2-container--default .select2-dropdown.select2-violet .select2-results__option--selected {
    background-color: var(--select2-violet);
}
.select2-container--default .select2-dropdown.select2-violet .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--select2-violet-hover);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 0px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    padding-right: 0px;
}
.select2-container--default .select2-search--dropdown.select2-orange .select2-search__field {
    border: 1px solid rgba(255, 127, 39, 0.3);
}
.select2-container--default .select2-search--dropdown.select2-orange .select2-search__field:focus {
    border-color: var(--select2-orange);
    box-shadow: 0 0 0 0.1rem rgba(255, 127, 39, 0.25);
}
.select2-container--default .select2-search--dropdown.select2-violet .select2-search__field {
    border: 1px solid rgba(158, 39, 255, 0.25);
}
.select2-container--default .select2-search--dropdown.select2-violet .select2-search__field:focus {
    border-color: var(--select2-violet);
    box-shadow: 0 0 0 0.1rem rgba(158, 39, 255, 0.25);
}


/* Arrow for multiple select (inside inline search field) */
.select2-container--default .select2-selection--multiple .select2-search--inline {
    position: relative;
    padding-right: 24px;
}
.select2-container--default .select2-selection--multiple .select2-search--inline::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    margin-top: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0;
    border-color: var(--select2-orange) transparent transparent;
    pointer-events: none;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    padding-right: 20px;
}
.select2-violet ~ .select2-container--default .select2-selection--multiple .select2-search--inline::after {
    border-color: var(--select2-violet) transparent transparent;
}
.select2-violet ~ .select2-container--default.select2-container--open .select2-selection--multiple .select2-search--inline::after {
    border-width: 0 5px 7px;
    border-color: transparent transparent var(--select2-violet);
}


.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 14px;
}