/* kit/web/print.css — print isolation, separate from tokens.css (2026-09-15).
 *
 * Under @media print only a .print-sheet prints and everything else is hidden: the workpaper idiom
 * (SportPass's close pack, a dispute package). An app that prints whole surfaces (NIL prints drills,
 * reports and offers) takes tokens.css WITHOUT this file. Copied into an app at the kit tag it pins,
 * like tokens.css; the app links it after tokens.css. */
@media print {
  body * { visibility: hidden; }
  .print-sheet, .print-sheet * { visibility: visible; }
  .print-sheet { position: absolute; left: 0; top: 0; width: 100%; border: none !important; }
  .print-hide { display: none !important; }
  @page { margin: 14mm; }
}
