/* Custom styles for Select2 to match Bootstrap 5 & System Theme */

/* Container width */
.select2-container {
    width: 100% !important;
}

/* Single selection styling matching .form-control / .form-select */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    height: 48px; /* matching form-control-lg roughly */
    padding: 0.5rem 2.25rem 0.5rem 1rem;
    outline: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* For focus state */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Rendered text alignment */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529;
    line-height: 28px;
    padding-left: 0;
    padding-right: 0;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

/* Arrow position */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 0.75rem;
}

/* Clear button 'x' */
.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 46px;
    line-height: 46px;
    margin-right: 1.5rem;
    font-size: 1.25rem;
}

/* Dropdown */
.select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

/* Search input */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    outline: none;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Highlighted option */
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #0d6efd;
    color: white;
}
