.ui-slider-track {
    width: 100%;
    height: 100%;
    background: #3a3a4a;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.ui-slider-fill {
    height: 100%;
    background: #646cff;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.ui-slider-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}