/* container */
.select2-container--default .select2-selection--single {
    width: 100%;
    background-color: #f9fafb; /* bg-gray-50 */
    border: 2px solid #e5e7eb; /* border-gray-200 */
    border-radius: 0.75rem; /* rounded-xl */
    padding: 0.6rem 0.75rem; /* px-4 py-2.5 approx */
    height: auto;
    transition: all 0.3s ease;
}

/* text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #111827;
    line-height: 1.5rem;
}

/* arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* focus effect */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: transparent;
    box-shadow: 0 0 0 2px #86efac; /* focus:ring-green-300 */
}

/* dropdown */
.select2-dropdown {
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

/* option hover */
.select2-results__option--highlighted {
    background-color: #86efac !important; /* green-300 */
    color: #065f46;
}

/* selected */
.select2-results__option--selected {
    background-color: #d1fae5; /* green-100 */
    color: #065f46;
}