.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0C7CA8;
    cursor: pointer;
}

.results {
    display: none;
    background: #f8fafc;
    padding: 18px;
    border-radius: 8px;
    margin-top: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.compression-ratio {
    color: #16a34a;
    font-weight: 600;
}

.spinner {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(0,0,0,.1);
    border-top: 3px solid #0C7CA8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.slider-header{
display:flex;
justify-content:space-between;
margin-bottom:6px;
}

.slider-value{
font-weight:600;
color:#0C7CA8;
}

