/* Print stylesheet — the compliance record must print clean on US Letter,
   one chair per page, with no navigation chrome. Loaded with
   media="print" so it never affects screen rendering. */

@page {
  size: letter;
  margin: 0.5in;
}

.no-print {
  display: none !important;
}

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

.app-main {
  max-width: none;
  padding: 0;
  margin: 0;
}

.tdlr-record {
  border: none;
  border-radius: 0;
  padding: 0;
  page-break-after: always;
}

.tdlr-record__header {
  border-bottom: 2px solid #000;
}

.tdlr-table th,
.tdlr-table td {
  border: 1px solid #000;
  color: #000;
}

.tdlr-table thead th {
  background: #eee !important;
  color: #000 !important;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.tdlr-record__banner {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.tdlr-info-table th {
  background: #f2f2f2 !important;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.tdlr-table tbody tr {
  break-inside: avoid;
}

a[href]::after {
  content: "";
}
