﻿.select2-container {
    width: 100% !important;
    direction: rtl;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .select2-container--default .select2-selection--single:focus {
        outline: none;
        border-color: #7C3AED;
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #4b5563;
        line-height: 38px;
        padding-right: 32px; /* فضای کافی برای فلش */
        font-size: 14px;
        text-align: right;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #9ca3af;
    }

    /* فلش رو به پایین */
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px;
        width: 24px;
        left: 8px; /* فلش در سمت چپ برای RTL */
        right: auto;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #6b7280 transparent transparent transparent;
            border-width: 6px 4px 0 4px;
            margin-top: -3px;
        }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6b7280 transparent;
    border-width: 0 4px 6px 4px;
}

/* دکمه ضربدر (Clear) */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #ef4444;
    font-size: 16px;
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .select2-container--default .select2-selection--single .select2-selection__clear:hover {
        color: #dc2626;
    }

/* منوی کشویی */
.select2-container--default .select2-dropdown {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin-top: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    direction: rtl;
    margin: 8px;
}

.select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
    color: #4b5563;
    direction: rtl;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #7C3AED;
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f3f4f6;
    color: #1f2937;
}

/* پیام‌های Select2 */
.select2-container--default .select2-results__message {
    padding: 8px 12px;
    font-size: 14px;
    color: #6b7280;
    direction: rtl;
}

/* رفع تداخل با Tailwind */
.select2-container * {
    box-sizing: border-box;
}
