/* Bow-tie landscape print stylesheet. Renders the diagram on a single A4 landscape page.
 * Plan 06-02b polish — expanded from Wave 0 stub (see 06-CONTEXT.md and Research §8). */

@page { size: A4 landscape; margin: 1cm; }

@media print {
  /* Hide non-essential chrome */
  #app-shell,
  #app-footer,
  nav,
  .toolbar,
  button,
  #bow-tie-stats { display: none !important; }

  /* Expand main content area to fill the printable page */
  #page-root { margin: 0 !important; padding: 0 !important; }

  /* Scale the SVG to fit the landscape printable area */
  #bow-tie-svg {
    width: 100%;
    height: auto;
    max-height: 18cm;
    page-break-inside: avoid;
  }

  /* Force black-on-white background (preserves effectiveness pill fills via stroke contrast) */
  body { background: #fff !important; color: #000 !important; }
}
