/* کانتینر اسلایدر */
.range-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
    direction: rtl; /* راست‌چین کردن */
}

/* میله اسلایدر */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
}

/* دایره هندل */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    background: #007bff;
    border: 2px solid #0056b3;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* نمایش مقدار درون هندل */
.range-value {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 3;
}

/* برچسب‌های مینیموم و ماکسیموم */
.range-label {
    position: absolute;
    font-size: 12px;
    color: #555;
}

.range-label.min {
    right: 0;
}

.range-label.max {
    left: 0;
}


p.range-container {
    margin-bottom: 20px !important;
}
