/* Shheletar — Global print stylesheet.
   Additive to the per-page @media print rules in record.css / detail.css.
   Keeps the printable sheet clean: page geometry, hide chrome, plain links. */

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

  /* Preserve colour-coded breach evidence (rust-red times, breach dot, badge
     tints, rubber stamp, dashed route track) instead of letting the browser
     flatten backgrounds/colours to grey. */
  *, *::before, *::after { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  .mk-nav, .rec-toolbar, .mk-footer, .record__acts, .no-print { display: none !important; }

  body { background: #fff !important; }

  a { text-decoration: none; color: inherit; }
}
