/* print.css - @media print block (incl. LOCKED 63x88mm card print sizing). Part of the split-up style.css; see index.html for load order. */
  /* ── PRINT / EXPORT ── */
  /* All printing is done via a popup window containing baked PNG images.
     This @media print block only applies if someone uses Ctrl+P directly. */
  @media print {
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    body { background: white; }
    body::before { display: none; }
    header, .history-bar, .controls, .scale-control, .export-hint, .card-action-dock, .left-rail,
    .progress-overlay, #offscreenRender, #printSheet { display: none !important; }
  }

