/* Scoped Select2 styling for referral organization dropdowns only */
/* Targets: #referrer_organisation_type, #referrer_organisation, #referrer_establishment */

/* Main selection box styling to match Bootstrap form-control */
#referrer_organisation_type + .select2-container .select2-selection--single,
#referrer_organisation + .select2-container .select2-selection--single,
#referrer_establishment + .select2-container .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Selection text alignment */
#referrer_organisation_type + .select2-container .select2-selection--single .select2-selection__rendered,
#referrer_organisation + .select2-container .select2-selection--single .select2-selection__rendered,
#referrer_establishment + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #6e707e;
    line-height: 1.5;
    padding-left: 0;
    padding-right: 20px;
    display: block;
}

/* Arrow styling */
#referrer_organisation_type + .select2-container .select2-selection--single .select2-selection__arrow,
#referrer_organisation + .select2-container .select2-selection--single .select2-selection__arrow,
#referrer_establishment + .select2-container .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 0.75rem);
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

#referrer_organisation_type + .select2-container .select2-selection--single .select2-selection__arrow b,
#referrer_organisation + .select2-container .select2-selection--single .select2-selection__arrow b,
#referrer_establishment + .select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: #999 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

/* Focus state */
#referrer_organisation_type + .select2-container.select2-container--focus .select2-selection--single,
#referrer_organisation + .select2-container.select2-container--focus .select2-selection--single,
#referrer_establishment + .select2-container.select2-container--focus .select2-selection--single {
    border-color: #bac8f3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/* Placeholder styling */
#referrer_organisation_type + .select2-container .select2-selection--single .select2-selection__placeholder,
#referrer_organisation + .select2-container .select2-selection--single .select2-selection__placeholder,
#referrer_establishment + .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #858796;
}

/* Disabled state */
#referrer_organisation_type + .select2-container.select2-container--disabled .select2-selection--single,
#referrer_organisation + .select2-container.select2-container--disabled .select2-selection--single,
#referrer_establishment + .select2-container.select2-container--disabled .select2-selection--single {
    background-color: #eaecf4;
    color: #858796;
    cursor: default;
}

/* Dropdown styling */
.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option {
    padding: 6px 12px;
    font-size: 1rem;
    color: #6e707e;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4e73df;
    color: white;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e3f2fd;
    color: #6e707e;
}

/* Search box in dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    padding: 4px 6px;
    font-size: 1rem;
}

/* Font family consistency */
#referrer_organisation_type + .select2-container .select2-selection--single,
#referrer_organisation + .select2-container .select2-selection--single,
#referrer_establishment + .select2-container .select2-selection--single,
.select2-container--default .select2-results__option {
    font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Enhanced disabled styling */
#referrer_organisation_type:disabled + .select2-container .select2-selection--single,
#referrer_organisation:disabled + .select2-container .select2-selection--single,
#referrer_establishment:disabled + .select2-container .select2-selection--single {
    background-color: #eaecf4 !important;
    color: #858796 !important;
    cursor: not-allowed;
    opacity: 0.65;
}
