/* Make results list scroll correctly */
.select2-container .select2-results__options {
    max-height: 400px;
    overflow-y: auto;
}

/* Ensure dropdown overlays everything (just in case) */
.select2-container .select2-dropdown {
    z-index: 9999;
}

/* ==== DARK MODE COLORS (no vars) ==== */
[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection,
[data-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown {
    background: #161b22; /* surface */
    color: #e6e6e6; /* text */
    border-color: #2a2f37; /* border */
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered,
[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
    color: #e6e6e6;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #9aa3ad;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-search__field {
    background: #0f141a;
    color: #e6e6e6;
    border-color: #2a2f37;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-results__option--highlighted {
    background: #273040; /* hover/highlight */
    color: #ffffff;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-results__option--selected {
    background: #1d4ed8; /* selected */
    color: #ffffff;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    background: #273040; /* tag/chip bg */
    border-color: #2a2f37;
    color: #e6e6e6;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove {
    color: #9aa3ad;
}

[data-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffffff;
}

/* Focus ring */
[data-theme="dark"] .select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, .25);
}
