/* print.css — print only the certificate on one A4 page. */
@media print {
  @page { size: A4 portrait; margin: 14mm; }
  html, body { height: auto !important; overflow: visible !important; background: #fff !important; }
  #app { height: auto !important; display: block !important; }
  .topbar, .footer, .mascot, .btn, .btn--skip, .confetti, #sr-status { display: none !important; }
  .stage { position: static !important; overflow: visible !important; display: block !important; }
  .screen { position: static !important; animation: none !important; }
  .screen__inner { display: block !important; }
  .cert {
    box-shadow: none !important;
    border: 4px solid #46a302 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    break-inside: avoid;
  }
  .cert__teacher input { border: none !important; text-align: center; }
}
