/* Khusus untuk mengatur ukuran kertas Thermal 58mm */
@media print {
    @page {
        margin: 0;
        size: 58mm auto; 
    }

    /* Memastikan elemen yang memiliki class ini hilang saat dicetak */
    .print\:hidden {
        display: none !important;
    }
    
    /* Memaksa background putih dan teks hitam pekat untuk printer thermal */
    body {
        background-color: white !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
    }
}