/* Slider and Input Styles */

/* Stats */
.stats { display: flex; gap: 12px; padding: 10px; background: #1a1a1a; border-radius: 4px; }
.stat { text-align: center; flex: 1; }
.stat-value { font-family: 'Space Mono', monospace; font-size: 16px; font-weight: 700; color: #fff; }
.stat-label { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: #666; }

/* Sliders */
.slider-group { display: flex; flex-direction: column; gap: 4px; }
.slider-header { display: flex; justify-content: space-between; align-items: center; }
.slider-label { font-size: 12px; font-weight: 500; color: #999; }
.slider-value { font-family: 'Space Mono', monospace; font-size: 11px; color: #666; }

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* Colored slider thumbs */
.slider-red input::-webkit-slider-thumb { background: #e74c3c; }
.slider-green input::-webkit-slider-thumb { background: #2ecc71; }
.slider-blue input::-webkit-slider-thumb { background: #3498db; }

/* Select */
select {
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 13px;
    background: #1a1a1a;
    color: #e5e5e5;
    cursor: pointer;
    outline: none;
}

/* Checkbox */
.checkbox-group { display: flex; align-items: center; gap: 8px; }
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: #fff; }
.checkbox-group label { font-size: 12px; color: #999; cursor: pointer; }

/* Warning Banner */
.warning-banner {
    display: none;
    padding: 10px 12px;
    background: #332b00;
    border: 1px solid #665500;
    border-radius: 4px;
    font-size: 11px;
    color: #ffcc00;
}
.warning-banner.visible { display: block; }
