/*
  Print-specific rules.

  Stage 1 note: full agreement print formatting arrives in Stage 6 alongside
  PDF generation, so the printed page matches the generated PDF. For now we
  just hide app-chrome that makes no sense on paper.
*/

@media print {
  .app-bar,
  .action-bar {
    display: none !important;
  }

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

  .stage-card {
    box-shadow: none !important;
    border: none !important;
    break-inside: avoid;
  }
}
