/* Base Select2 container */
.select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #d1d5db; /* light gray */
    border-radius: 4px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    background-color: #fff;
    font-size: 14px;
    color: #111827;
    transition: all 0.2s ease-in-out;
}

/* Hover & focus effect */
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus {
    border-color: var(--theme-color); /* blue-500 */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Arrow inside Select2 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Selected text inside */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #111827;
    line-height: normal;
    padding-left: 4px;
    font-size:12px;
}

/* Dropdown */
.select2-dropdown {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 4px;
    background: #fff;
    font-size: 14px;
}

/* Each option */
.select2-results__option {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

/* Highlighted option */
.select2-results__option--highlighted {
    background-color: var(--theme-color) !important; /* blue-500 */
    color: #fff !important;
    border-radius: 6px;
}

/* Selected option */
.select2-results__option[aria-selected="true"] {
    background-color: #e5e7eb; /* gray-200 */
    color: #111827;
}

/* Multiple select styling */
.select2-container--default .select2-selection--multiple {
    min-height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 4px 8px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Tags inside multiple select */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 13px;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color:#fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{
    background-color:transparent !important;
}