/* public/css/modules/scanner.css - Movido do <style> interno do index.html */
#reader { width: 100%; background: #000; overflow: hidden; }
#reader video { object-fit: cover; border-radius: 8px; max-height: 40vh; }

#cameraControls { 
    padding: 10px 20px; background: #f8f9fa; 
    border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; 
    display: none; 
}

.zoom-label { 
    font-weight: bold; font-size: 0.9rem; 
    display: flex; justify-content: space-between; margin-bottom: 5px; 
}

.custom-range { width: 100%; height: 2rem; }

#debugPanel { 
    display: none; background: #333; color: #fff; 
    padding: 10px; margin-top: 10px; border-radius: 4px; 
}

#scannerDebugLog { 
    font-size: 0.65rem; max-height: 80px; overflow-y: auto; 
    background: #eee; padding: 5px; margin-top: 5px; 
    text-align: left; border: 1px solid #ccc; display: none; 
}

.log-entry { border-bottom: 1px solid #ddd; font-family: monospace; white-space: nowrap; }
.log-error { color: red; }
