.alm-slider-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.alm-custom-slider {
    position: relative;
    height: 5px;
    background: #E8E8E8;
    border-radius: 20px;
    margin: 15px 0;
}

.alm-slider-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--global-palette1);
    border-radius: 20px;
}

.alm-slider-handle {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    background: var(--global-palette2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alm-slider-handle img {
    user-select: none;
}

.alm-slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
} 