/* Applied only when printing a Synapse page directly (base.html, media=print).
   The canonical prescription prints via its own inlined styles inside the
   print-view iframe; this just keeps app chrome off the page if the doctor
   hits Ctrl+P on a patient/review page. */
@media print {
  .no-print, .topbar, .back, .actions, .redbox, .secgrid,
  #meds-container, .btn, .btn-primary, .warnbox, .errbox, .timeline > summary {
    display: none !important;
  }
  body { background: #fff; }
  .wrap { max-width: none; padding: 0; }
  .preview-frame { border: none; box-shadow: none; padding: 0; margin: 0; }
  a[href]::after { content: ""; }
  /* .rx-toolbar is already .no-print above; this lives inside the meds table
     itself (not the toolbar) so a direct Ctrl+P from the still-draft review
     screen doesn't print editing chrome around the Duration column. */
  .pv-dur-input { border: none !important; background: transparent !important; padding: 0 !important; }
}
