/* Select2 Custom Styles for RTL and Theme Customization */

/* RTL Support for Select2 */
.select2-container--bootstrap-5 {
    direction: rtl;
}

/* Remove built-in clear button styles */
.select2-selection__clear {
    display: none !important;
}

/* Multi-select styling */
.select2-container--bootstrap-5 .select2-selection--multiple {
    min-height: calc(1.5em + 0.75rem + 2px);
}

/* Selected items styling */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    /* background-color: gray; */
    border-color: #0d6efd;
    color: white;
    padding: 0.25rem 0.5rem;
    margin: 0.125rem;
    border-radius: 0.25rem;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-left: 0.25rem;
    opacity: 0.8;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove:hover {
    opacity: 1;
}

/* Dropdown styling */
.select2-container--bootstrap-5 .select2-dropdown {
    border-color: #dee2e6;
    border-radius: 0.375rem;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #0d6efd;
    color: white;
}

/* Search input styling */
.select2-container--bootstrap-5 .select2-search--inline .select2-search__field {
    margin-top: 0;
    padding: 0.25rem;
}

/* Placeholder styling */
.select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #6c757d;
}

/* Focus state */
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Loading state */
.select2-container--bootstrap-5 .select2-results__option--loading {
    text-align: center;
    color: #6c757d;
}

/* No results state */
.select2-container--bootstrap-5 .select2-results__option[aria-disabled=true] {
    color: #6c757d;
    cursor: not-allowed;
}

/* Group labels */
.select2-container--bootstrap-5 .select2-results__group {
    /* padding: 0.5rem 0.75rem; */
    font-weight: 600;
    color: #212529 !important;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    width: 100%;
    background-color: #f0f7ff;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
        font-size: 0.875rem;
    }
}
