/* public/print.css */
@media print {
  @page { size: 9.5in 4in; margin: 0; }

  html, body {
    width: 9.5in; height: 4in;
    margin: 0; padding: 0;
    background: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    font-family: "Courier New", monospace;
  }

  /* hide everything first, re-enable ticket(s) only */
  body *            { visibility: hidden !important; }
  .ticket-container,
  .ticket-container * { visibility: visible !important; }

  .ticket-container {
    width: 9.5in; height: 4in;
    position: relative;
    page-break-after: always;
  }

  /* Nuke the scanned template when printing */
  .ticket            { background-image: none !important; }

  /* never print UI buttons */
  .no-print          { display: none !important; }
}
