.rating-slider {
    --slider-track-height: 8px;
    --slider-thumb-size: 20px;
    --slider-color: #4FD1C5;
    --slider-bg: #E2E8F0;
}

.rating-slider::-webkit-slider-runnable-track {
    height: var(--slider-track-height);
    background: var(--slider-bg);
    border-radius: 4px;
}

.rating-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: var(--slider-thumb-size);
    height: var(--slider-thumb-size);
    border-radius: 50%;
    background: var(--slider-color);
    cursor: pointer;
    margin-top: calc((var(--slider-thumb-size) - var(--slider-track-height)) / -2);
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rating-slider::-moz-range-track {
    height: var(--slider-track-height);
    background: var(--slider-bg);
    border-radius: 4px;
}

.rating-slider::-moz-range-thumb {
    width: var(--slider-thumb-size);
    height: var(--slider-thumb-size);
    border-radius: 50%;
    background: var(--slider-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rating-slider::-moz-range-progress {
    height: var(--slider-track-height);
    background: var(--slider-color);
    border-radius: 4px;
}

/* Додаємо відображення значення над слайдером */
.rating-slider-container {
    position: relative;
    padding-top: 25px;
}

.rating-slider-value {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #4A5568;
    border: 1px solid #E2E8F0;
}

/* Додаємо мітки */
.rating-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    padding: 0 10px;
}

.rating-slider-tick {
    font-size: 12px;
    color: #718096;
} 