.slider-field {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1 1;
}

.slider-field-wrapper {
    display: contents;
    flex-direction: column;
    width: 100%;
    max-width: 200px; 
    margin-left: 10px;
}

.slider-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.slider-container input[type="range"] {
    flex: 1;
    appearance: none;
    height: 10px;
    background: #ddd;
    border-radius: 2px;
    outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #3091f0;
    border-radius: 60%;
    cursor: pointer;
}

.slider-value {
    font-size: 14px;
    color: #333;
    min-width: 28px;
    text-align: right;
} 