/* Country Select Component Styles */

/* Ensure Select2 dropdowns are properly styled */
.country-select + .select2-container {
    width: 100% !important;
}

.country-select + .select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #d9dee3;
    border-radius: 0.375rem;
}

.country-select + .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: 12px;
    padding-right: 20px;
}

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

/* Flag icon styling */
.select2-results__option .ti-flag {
    margin-right: 8px;
    color: #6c757d;
}

.select2-selection__rendered .ti-flag {
    margin-right: 8px;
    color: #6c757d;
}

/* Search input styling */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #d9dee3;
    border-radius: 0.375rem;
    padding: 8px 12px;
}

/* Dropdown styling */
.select2-dropdown {
    border: 1px solid #d9dee3;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Results styling */
.select2-results__option {
    padding: 8px 12px;
}

.select2-results__option--highlighted {
    background-color: #f8f9fa;
    color: #495057;
}

.select2-results__option[aria-selected="true"] {
    background-color: #0d6efd;
    color: white;
}

/* Hide clear button since allowClear is false */
.select2-selection__clear {
    display: none !important;
}
