/* This file contains styles for the new slider controls. */

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5px 0;
    margin-bottom: 5px;
}

.slider-label {
    font-size: 12px;
    color: var(--secondary-accent);
    margin-bottom: 8px;
}

.slider-track {
    position: relative;
    width: 90%;
    height: 4px;
    background-color: var(--tertiary-bg);
    border-radius: 2px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 24px;
    background-color: var(--primary-accent);
    border-radius: 6px;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    user-select: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.slider-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-anchors {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-anchor {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 50%;
}