

        .hidden {
            /* កូដសំខាន់សម្រាប់លាក់ */
            display: none; 
        }
        /* រចនាប័ទ្មទូទៅ (General Styles) */
        body {
            /* ប្រើ Kantumruy Pro សម្រាប់ខ្មែរ និង Inter សម្រាប់ Latin */
            font-family: 'Kantumruy Pro', 'Inter', sans-serif;
            background-color: #f3f4f6; /* ប្រផេះស្រាល */
        }
        /* រចនាប័ទ្មសម្រាប់ទិដ្ឋភាពកម្មវិធី (App View) */
        .app-container {
            max-width: 450px; /* ទំហំអតិបរមាដូចទូរស័ព្ទ (Max mobile size) */
            margin: 0 auto;
            min-height: 100vh;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            position: relative;
        }
        /* លាក់លំអិតសម្រាប់បោះពុម្ព (Hide form elements on print) */
        @media print {
            .no-print {
                display: none !important;
            }
            .app-container {
                box-shadow: none;
                max-width: 100%;
                min-height: 0;
            }
            #invoiceView {
                padding: 0 !important;
                margin: 0 !important;
                background-color: white !important;
            }
            /* កាត់បន្ថយទំហំពុម្ពអក្សរសម្រាប់ការបោះពុម្ព */
            #invoiceView {
                font-size: 8pt !important; 
            }
        }
        /* រចនាប័ទ្មសម្រាប់ប៊ូតុងបន្ថែមមុខទំនិញ */
        .add-item-btn {
            transition: all 0.15s ease-in-out;
        }
        .add-item-btn:hover {
            transform: scale(1.02);
        }
