﻿.custom-select2 + .select2-container {
    width: 18rem !important;
    flex-shrink: 0;
    direction: rtl;
}

    .custom-select2 + .select2-container .select2-selection--single {
        height: 28px;
        min-height: 28px;
        border: 1px solid #d1d5db;
        border-radius: 0.375rem;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        cursor: pointer;
        box-sizing: border-box;
    }

        .custom-select2 + .select2-container .select2-selection--single .select2-selection__rendered {
            color: #374151;
            padding: 0 0.5rem;
            line-height: 36px;
            width: 100%;
            text-align: right;
        }

        .custom-select2 + .select2-container .select2-selection--single .select2-selection__arrow {
            position: absolute;
            left: 6px;
            right: auto;
            top: 0;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
        }

            .custom-select2 + .select2-container .select2-selection--single .select2-selection__arrow b {
                border-color: #6b7280 transparent transparent transparent;
                border-style: solid;
                border-width: 5px 4px 0 4px;
                margin: 0;
            }

    .custom-select2 + .select2-container .select2-dropdown {
        border: 1px solid #d1d5db;
        border-radius: 0.375rem;
        overflow: hidden;
        background-color: #ffffff;
    }

    .custom-select2 + .select2-container .select2-results__option {
        padding: 0.45rem 0.6rem;
        color: #000000;
        background-color: #ffffff;
        text-align: right;
        display: flex;
        align-items: center;
    }

    .custom-select2 + .select2-container .select2-results__option--highlighted[aria-selected] {
        background-color: #f3f4f6;
        color: #000000;
    }

    .custom-select2 + .select2-container .select2-results__option[aria-selected="true"] {
        background-color: #f9fafb;
        color: #000000;
    }

    .custom-select2 + .select2-container.select2-container--focus .select2-selection--single,
    .custom-select2 + .select2-container.select2-container--open .select2-selection--single {
        border-color: #9ca3af;
        outline: none;
        box-shadow: 0 0 0 1px #9ca3af;
    }


/* Dark Mode */

.dark .custom-select2 + .select2-container .select2-selection--single {
    background-color: #111827;
    border-color: #374151;
}

    .dark .custom-select2 + .select2-container .select2-selection--single .select2-selection__rendered {
        color: #f3f4f6;
    }

    .dark .custom-select2 + .select2-container .select2-selection--single .select2-selection__arrow b {
        border-color: #d1d5db transparent transparent transparent;
    }

.dark .custom-select2 + .select2-container .select2-dropdown {
    background-color: #111827;
    border-color: #374151;
}

.dark .custom-select2 + .select2-container .select2-results__option {
    background-color: #111827;
    color: #f3f4f6;
}

.dark .custom-select2 + .select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #1f2937;
    color: #ffffff;
}

.dark .custom-select2 + .select2-container .select2-results__option[aria-selected="true"] {
    background-color: #1f2937;
    color: #ffffff;
}
.dark .select2-dropdown {
    background-color: #111827 !important;
    border-color: #374151 !important;
}

.dark .select2-results__option {
    background-color: #111827 !important;
    color: #f3f4f6 !important;
}

.dark .select2-results__option--highlighted {
    background-color: #1f2937 !important;
    color: #ffffff !important;
}