.select2-container--default .select2-selection--single {
    height: 43px;
    border: 1px solid var(--bs-input-border-color);
    border-radius: 6px;
    background-color: var(--bs-input-bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 43px;
    padding-left: 12px;
    color: var(--bs-heading-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    right: 8px;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #0094fd;
    box-shadow: 0px 0px 0px 3px rgba(0, 148, 253, 0.13);
    background-color: transparent !important;
    outline: none;
}

.select2-dropdown {
    border: 1px solid #0094fd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 6px 10px;
    outline: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #0094fd;
    box-shadow: 0px 0px 0px 3px rgba(0, 148, 253, 0.13);
}

.select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
    background-color: var(--bs-input-bg);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0094fd;
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: rgba(0, 148, 253, 0.13);
    color: #0094fd;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #aaa;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-search--dropdown {
    background-color: var(--bs-input-bg);
}