/* Screen-specific styles for QR_Code_Scanner_Screen */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }
        
        .screen {
            height: 100%;
            overflow-y: auto;
        }
        
        .content {
            padding-bottom: 80px;
        }
        
        .purple-light-bg {
            background-color: #f5f3ff;
        }
        
        .purple-tint {
            color: #7c3aed;
        }
        
        .accent-color {
            color: #ea580c;
        }
        
        .accent-bg {
            background-color: #ea580c;
        }
        
        /* Fix for bottom navigation */
        .bottom-navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #f1f1f1;
            padding: 12px 24px;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 100;
        }
        
        .scanner-container {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
            border-radius: 16px;
            background-color: #000;
        }
        
        .scanner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 16px;
        }
        
        .scanner-frame {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 200px;
            border: 2px solid #ea580c;
            border-radius: 10px;
            box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.5);
            z-index: 20;
        }
        
        .scanner-line {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #ea580c;
            z-index: 30;
            animation: scan 2s linear infinite;
        }
        
        @keyframes scan {
            0% {
                top: 0;
            }
            50% {
                top: 200px;
            }
            100% {
                top: 0;
            }
        }
        
        .corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: #ffffff;
            z-index: 25;
        }
        
        .top-left {
            top: -2px;
            left: -2px;
            border-top: 4px solid;
            border-left: 4px solid;
            border-top-left-radius: 5px;
        }
        
        .top-right {
            top: -2px;
            right: -2px;
            border-top: 4px solid;
            border-right: 4px solid;
            border-top-right-radius: 5px;
        }
        
        .bottom-left {
            bottom: -2px;
            left: -2px;
            border-bottom: 4px solid;
            border-left: 4px solid;
            border-bottom-left-radius: 5px;
        }
        
        .bottom-right {
            bottom: -2px;
            right: -2px;
            border-bottom: 4px solid;
            border-right: 4px solid;
            border-bottom-right-radius: 5px;
        }
        
        .traceability-data {
            display: none;
        }
