/* Generic Select2 (single-select) styling to match Tailwind form inputs */
.select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding: 0;
    color: #1f2937;
    font-size: 0.875rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 10px;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #7592ff;
    box-shadow: none;
}

.select2-dropdown {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #7592ff;
    color: #ffffff;
}

/* Dark mode */
.dark .select2-container--default .select2-selection--single {
    background-color: #101828;
    border-color: #374151;
}

.dark .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
}

.dark .select2-dropdown {
    background-color: #101828;
    border-color: #374151;
}

.dark .select2-results__option {
    color: #ffffff;
    background-color: #101828;
}

.dark .select2-search__field {
    background-color: #101828;
    color: #ffffff;
    border-color: #374151;
}

/* ==========================================================================
   Global Nationality Select2 Component (.select2-nationality)
   Rounded-xl styling with light/dark theme matching Agent and Admin portals
   ========================================================================== */
.select2-nationality + .select2-container--default .select2-selection--single {
    height: 44px;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    background-color: #ffffff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-nationality + .select2-container--default.select2-container--focus .select2-selection--single,
.select2-nationality + .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.select2-nationality + .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #111827;
    font-size: 0.875rem;
    padding-left: 0;
    line-height: normal;
}

.select2-nationality + .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
    right: 10px;
}

/* Dark mode for .select2-nationality */
.dark .select2-nationality + .select2-container--default .select2-selection--single {
    background-color: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}

.dark .select2-nationality + .select2-container--default.select2-container--focus .select2-selection--single,
.dark .select2-nationality + .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.dark .select2-nationality + .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #f9fafb;
}

