body {
            font-family: 'Inter', sans-serif;
            color: #0F172A;
            background-color: #F8FAFC;
        }

        /* Print styles */
        @media print {
            body {
                background-color: #FFFFFF !important;
                color: #000000 !important;
            }
            .no-print {
                display: none !important;
            }
            .print-only {
                display: block !important;
            }
            .printable-area {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                margin: 0;
                padding: 15px;
                background: white !important;
            }
            .card-shadow {
                box-shadow: none !important;
                border: 1px solid #ccc !important;
            }
        }

        @media screen {
            .print-only {
                display: none !important;
            }
        }

        /* Custom scrollbar for picking list */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #F1F5F9;
        }
        ::-webkit-scrollbar-thumb {
            background: #CBD5E1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94A3B8;
        }
