@layer utilities {
/* print.css — Print-specific overrides */

@media print {
  .no-print { display: none !important; }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  header,
  nav,
  footer,
  .flash,
  .editor-toolbar,
  .step-palette {
    display: none !important;
  }
}
}
