/* static/css/quality.css */
#quality-panel {
    display: none; /* Default hidden, overridden by body.mode-3d .viewer-only ? Actually, let's let app.js showing logic handle it, or just display:none default */
    position: absolute;
    right: 180px;
    bottom: 30px;
    background: rgba(30, 30, 46, 0.9);
    border: 1px solid #444;
    border-radius: 8px;
    z-index: 100;
    padding: 10px 15px;
    color: #fff;
    width: 250px;
    flex-direction: column;
}

body.mode-3d #quality-panel {
    display: flex;
}

#quality-panel.hidden {
    display: none !important;
}

#quality-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #444;
    border-radius: 3px;
    outline: none;
    margin: 10px 0;
}

#quality-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4ade80;
    cursor: pointer;
}

#quality-label {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #4ade80;
}
