/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    background-color: var(--theme-background) !important;
    border: 2px solid var(--theme-primary) !important;
    border-opacity: 0.3;
    border-radius: 0.5rem !important;
    height: 3.7rem !important;
    padding: 0.5rem 1rem !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--theme-primary-text) !important;
    line-height: 1.5 !important;
    padding: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 1rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--theme-primary) transparent transparent transparent !important;
}

/* Dropdown Styles */
.select2-dropdown {
    border: 2px solid var(--theme-primary) !important;
    border-radius: 0.5rem !important;
    background-color: var(--theme-background) !important;
    margin-top: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid var(--theme-primary) !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem !important;
    color: var(--theme-primary-text) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none !important;
    border-color: var(--theme-primary) !important;
    box-shadow: 0 0 0 2px rgba(var(--theme-primary-rgb), 0.1) !important;
}

.select2-container--default .select2-results__option {
    padding: 0.5rem 1rem !important;
    color: var(--theme-primary-text) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--theme-primary) !important;
    color: var(--theme-primary) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(var(--theme-primary-rgb), 0.1) !important;
}

/* Focus States */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--theme-primary) !important;
    box-shadow: 0 0 0 2px rgba(var(--theme-primary-rgb), 0.1) !important;
}

/* Disabled States */
.select2-container--default .select2-selection--single[aria-disabled=true] {
    background-color: rgba(var(--theme-primary-rgb), 0.05) !important;
    opacity: 0.7;
} 

.select2-container--default .select2-search--dropdown .select2-search__field{
    background-color: var(--theme-background) !important;
}