/**
 * Print stylesheet for Visitor Registry
 * #27647 — browser-print of shipment lists and labels should render
 * clean, light, full-width content without screen chrome.
 */

@media print {
  /* Hide non-content chrome: nav, sidebars, action bars, toolbars, tabs */
  nav,
  aside,
  header.app-header,
  .app-sidebar,
  .app-nav,
  .action-bar,
  .toolbar,
  .tabs,
  .tab-bar,
  .mode-toggle,
  button:not(.print-include),
  [role="tablist"],
  [data-print="hide"] {
    display: none !important;
  }

  /* Force light background + black text everywhere */
  html,
  body,
  .bg-white,
  .bg-gray-50,
  .bg-gray-100,
  .dark\:bg-gray-800,
  .dark\:bg-gray-900 {
    background: white !important;
    color: black !important;
  }

  * {
    color: black !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Remove shadows and heavy borders for cleaner print */
  .shadow,
  .shadow-sm,
  .shadow-md,
  .shadow-lg,
  .shadow-xl {
    box-shadow: none !important;
  }

  /* Ensure main content / tables print full-width */
  main,
  .app-main,
  table {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
  }

  /* Avoid breaking rows across pages */
  tr {
    page-break-inside: avoid;
  }

  /* Monospace for document / reference numbers */
  .font-mono {
    font-family: "Courier New", monospace !important;
  }

  @page {
    margin: 2cm;
    size: A4;
  }
}
