@media print {
  @page {
    size: A4;
    margin: 0.4in 0.45in 0.5in 0.45in;
  }

  /* ── Reset the page ─────────────────────────────────────────────── */
  html, body {
    background: white !important;
    color: black !important;
    font-size: 11px !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* ── Nuke all shadows and decorations ───────────────────────────── */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .rounded-xl, .rounded-2xl, .rounded-lg, .rounded-md {
    border-radius: 0 !important;
  }

  /* ── Compact table cells ────────────────────────────────────────── */
  table {
    page-break-inside: auto;
    font-size: 9px !important;
  }
  th, td {
    padding: 4px 6px !important;
  }
  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  thead {
    display: table-header-group;
  }

  /* ── Page break control ─────────────────────────────────────────── */
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  img, svg {
    page-break-inside: avoid;
  }
}
