﻿.range-container {
    max-width: 500px;
    background: white;
    padding: 1px;
    border-radius: 6px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

.inputs-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.input-box {
    width: 60px;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.separator {
    font-size: 16px;
    color: #666;
}

.slider-wrapper {
    position: relative;
    height: 40px;
    margin: 20px 0;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    top: 17px;
}

.slider-range {
    position: absolute;
    height: 6px;
    background: #ff4444;
    border-radius: 3px;
    top: 17px;
}

input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    top: 17px;
}

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        background: white;
        border: 3px solid #ff4444;
        border-radius: 50%;
        cursor: pointer;
        pointer-events: all;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    input[type="range"]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: white;
        border: 3px solid #ff4444;
        border-radius: 50%;
        cursor: pointer;
        pointer-events: all;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

.get-values-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

    .get-values-btn:hover {
        background: #45a049;
    }

.result {
    margin-top: 15px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    font-family: monospace;
}
