/* Select Box Styling */
.form-select.rich-dropdown {
    height: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 0 15px rgba(72, 145, 111, 0.15);
    transition: box-shadow 0.3s ease;
}

.form-select.rich-dropdown:focus {
    box-shadow: 0 0 20px rgba(25, 135, 84, 0.25);
}

/* Rich Dropdown Option Styling */
.rich-dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background-color: #fff;
}

.rich-dropdown-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.rich-dropdown-details {
    font-size: 14px;
    line-height: 1.2;
}

/* Select2 Specific Styles */
.select2-container .select2-selection--single {
    height: 45px !important;
}

.select2-container--default .select2-selection--single {
    padding: 8px 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
}

/* Select2 Options Styling */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f0f0f0 !important;
    color: #000 !important;
}

.select2-container--default .select2-results__option[aria-selected] {
    background-color: #fff !important;
    color: #000 !important;
}

.select2-container--default .select2-results__option[aria-selected]:hover {
    background-color: #f0f0f0 !important;
    color: #000 !important;
}

.select2-results__option {
    color: #000 !important;
}

.select2-results__option strong,
.select2-results__option p {
    color: inherit !important;
}