﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600&display=swap');
        
        :root {
            --primary: #059669;
        }
        
        body {
            font-family: 'Inter', system_ui, sans-serif;
        }

        :focus-visible {
            outline: 3px solid #34d399;
            outline-offset: 3px;
        }

        .skip-link {
            position: fixed;
            top: 0.75rem;
            left: 0.75rem;
            z-index: 100;
            transform: translateY(-200%);
            padding: 0.65rem 0.9rem;
            border-radius: 0.75rem;
            background: #064e3b;
            color: #fff;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .skip-link:focus {
            transform: translateY(0);
        }
        
        .font-display {
            font-family: 'Poppins', 'Inter', sans-serif;
            font-weight: 600;
        }

        .app-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section {
            display: none;
        }
        
        .section.active {
            display: block;
        }

        .nav-tab {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-tab.active {
            background-color: #059669;
            color: white;
            box-shadow: 0 10px 15px -3px rgb(5 150 105 / 0.2);
        }

        .status-badge {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .item-card {
            transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), box-shadow 0.2s;
        }
        
        .item-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        .modal {
            animation: modalPopIn 0.2s ease-out forwards;
        }

        @keyframes modalPopIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .touch-target {
            min-height: 44px;
            min-width: 44px;
        }

        .data-table th {
            font-weight: 600;
            color: #374151;
            background: #f8fafc;
        }

        .consign-header {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }

        .metric-card {
            transition: transform 0.2s ease;
        }

        .metric-card:hover {
            transform: translateY(-1px);
        }

        .nav-mobile {
            box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
        }

        .photo-preview {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .empty-state {
            background-image: url('data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill-rule=%22evenodd%22%3E%3Cpath fill=%22%23f1e7ff%22 fill-opacity=%220.04%22 d=%22M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-10V8h-2v16h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 6v-4H4v4H0v2h4v4h2V8h4V6H6z%22/%3E%3C/g%3E%3C/svg%27');
            background-position: center;
            background-repeat: no-repeat;
            background-size: 60px;
        }

        .app-shell {
            background: #f8fafc;
        }

        .login-screen-bg {
            background:
                linear-gradient(90deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.82) 42%, rgba(248, 250, 252, 0.58) 100%),
                url('login-money-hands-bg.png') center / cover no-repeat;
        }

        .login-screen-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.22);
            pointer-events: none;
        }

        .login-screen-bg > * {
            position: relative;
            z-index: 1;
        }

        .section-header {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            letter-spacing: -.025em;
        }

        .barcode-label {
            box-sizing: border-box;
            width: 1.5in;
            height: 1in;
            padding: 0.055in 0.07in;
            background: white;
            color: #111827;
            font-family: Arial, sans-serif;
            overflow: hidden;
            border: 1px solid #cbd5e1;
            box-shadow: 0 10px 25px rgb(15 23 42 / 0.12);
        }

        .label-brand {
            font-size: 8px;
            font-weight: 800;
            line-height: 1;
            color: #0f2f73;
        }

        .label-title {
            font-size: 6.5px;
            font-weight: 700;
            line-height: 1.05;
            margin-top: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .barcode39 {
            margin-top: 3px;
            max-width: 100%;
            overflow: hidden;
        }

        .label-code {
            font-size: 8px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-align: center;
            line-height: 1;
            margin-top: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }
