/* Print-specific styles */ @media print { /* Hide browser elements and UI */ @page { margin: 0; size: auto; } body { margin: 0.5cm; } /* Hide all navigation and non-essential elements */ nav, header, footer, .nav-buttons, button, .no-print, input[type="button"], .header-section { display: none !important; } /* Hide the "Volver" button */ a[href*="Volver"], .btn-back, #volver, a.volver, .btn-secondary, .btn-primary { display: none !important; } /* Ensure the document takes exactly one page */ .receipt-container, .comprobante-container, .boleta-container, #boleta-container { page-break-inside: avoid; page-break-after: always; } /* Remove background colors and shadows for better printing */ * { background: white !important; box-shadow: none !important; -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; } /* Make text black for better print quality */ body, p, h1, h2, h3, h4, h5, table, tr, td, th, div, span { color: black !important; } /* Hide any buttons */ button, .btn, input[type="button"], input[type="submit"] { display: none !important; } /* Hide page URLs and other browser print info */ @page { size: auto; margin: 0mm; } /* Hide URL display in printout */ a:after { content: "" !important; } /* Force show the receipt */ #boleta-container { display: block !important; width: 100% !important; max-width: 100% !important; } }