/* Phase 6 split from frontend/static/app.css */
/* Section: smartauto */

/* ---------- Smart Auto Sliders ---------- */
.smart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) { .smart-grid { grid-template-columns: 1fr; } }

.smart-param {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.smart-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.smart-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(59, 130, 246, 0.15);
    outline: none;
    transition: background var(--transition-fast);
}

.smart-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    cursor: pointer;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    transition: transform var(--transition-fast);
}

.smart-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.smart-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.smart-slider-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-align: right;
}
