 /* Custom scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f1f5f9; }
        ::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #475569; }
        
        /* Print-only receipt styling */
        @media print {
            body > *:not(#print-area) { display: none; }
            #print-area { display: block; position: absolute; left: 0; top: 0; width: 100%; }
            @page { size: 80mm; margin: 0; }
        }

        /* Gojek-like green theme */
        :root {
            --primary-green: #00880C;
            --dark-green: #00700A;
        }
        .page { animation: fadeIn 0.5s ease-in-out; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pb-safe { padding-bottom: env(safe-area-inset-bottom); }