@media print {
  @page {
    size: A4;
    margin: 16mm 14mm;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .no-print, nav, .app-tab-bar, .app-side-rail, .toast, button {
    display: none !important;
  }

  .print-only { display: block !important; }

  .card {
    box-shadow: none !important;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  a { color: #000; text-decoration: none; }

  .sig-line {
    border-top: 1px solid #000;
    margin-top: 48px;
    padding-top: 4px;
    text-align: center;
    font-size: 10pt;
  }

  table { page-break-inside: auto; }
  tr    { page-break-inside: avoid; page-break-after: auto; }
  thead { display: table-header-group; }
  tfoot { display: table-footer-group; }
}

.print-only { display: none; }
