/* Fix dropdown text color - make it black and readable */
select.searchable-select option {
    color: #000 !important;
    background-color: #fff !important;
}

/* Fix nice-select dropdown text color if it's being used */
select.searchable-select.nice-select .current {
    color: #000 !important;
}

select.searchable-select.nice-select .list {
    background-color: #fff !important;
}

select.searchable-select.nice-select .option {
    color: #000 !important;
    background-color: #fff !important;
}

select.searchable-select.nice-select .option:hover,
select.searchable-select.nice-select .option.focus,
select.searchable-select.nice-select .option.selected.focus {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

/* Select2 custom styling to match form controls */
.select2-container .select2-selection--single {
    height: 50px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    display: flex;
    align-items: center;
    background-color: #fff !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    top: 1px !important;
    right: 1px !important;
    width: 30px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 12px !important;
    color: #212529 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #005A5A !important;
    color: white !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f8f9fa !important;
    color: #000 !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    color: #212529 !important;
    border: 1px solid #ced4da !important;
    background-color: #fff !important;
    outline: none !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    border-radius: 0.25rem !important;
}
.select2-dropdown {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    z-index: 1050 !important;
}
.select2-results__option {
    color: #495057 !important;
}

/* Global Select2 fix from Hotel Checkout */
.select2-container {
    width: 100% !important;
}
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}
