﻿@import url(../../Content/Fonts/FontsLib.css);


.x-select-wrapper {
    position: relative;
    width: 100%;
    display: block;
    margin-top:10px;
    margin-bottom:10px;
}

/* آیکون سفارشی در سمت چپ */
.x-select-icon {
    position: absolute;
    left: 12px; /* سمت چپ برای RTL */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* خود Select */
.x-select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    padding-left: 40px; /* فضای آیکون سمت چپ */
    border-radius: 8px;
    border: 1px solid #c9ccd1;
    background: #fff;
    color: #333;
    font-size: clamp(11px, 1.8vw, 13px);
    font-family: primary-font, IRANSans, sans-serif !important;
    direction: rtl;
    text-align: right;
    cursor: pointer;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}

    /* Hover — وقتی ماوس روی کادر قرار می‌گیرد */
    .x-select:hover {
        border-color: #8faeff;
        box-shadow: 0 0 5px rgba(91,140,255,0.35);
    }

    /* Focus — وقتی فعال می‌شود */
    .x-select:focus {
        border-color: #5b8cff;
        outline: 0;
        box-shadow: inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5);
    }

    /* گزینه‌ها — در Firefox مهم است */
    .x-select option {
        font-family: primary-font, IRANSans, sans-serif !important;
        font-size: clamp(11px, 1.8vw, 13px);
        background: #fff;
        color: #333;
        direction: rtl;
    }
