/**
 * "Print this element only" — shared by every quiz results page's "Scarica
 * PDF" button (assets/js/utils.js wirePrintButtons(), which just calls
 * window.print()). Content inside .em-print-target survives; everything
 * else — header, footer, nav, the action buttons themselves, restart/vote
 * forms — is hidden so the visitor's "Salva come PDF" print dialog produces
 * a clean one-purpose document instead of the whole site chrome.
 */
@media print {
  body * { visibility: hidden; }
  .em-print-target, .em-print-target * { visibility: visible; }
  .em-print-target { position: absolute; left: 0; top: 0; width: 100%; padding: 24px; }
  .em-header, .em-footer, .em-mobile-nav, [data-em-print], .em-result-actions,
  .em-edilquiz__form, .em-mq__checklist-ctas, .em-quiz__restart, .em-consulenza-quiz__reset {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: none; }
}
