/* A4 Print Styles */
@page { size: A4; margin: 18mm; }
:root { --print-font: 'Times New Roman', serif; }
body { font-family: var(--print-font); color: #111; }
h1,h2,h3 { page-break-after: avoid; }
.table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.table th, .table td { border: 1px solid #ccc; padding: 6px 8px; }
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.footer { margin-top: 16px; font-size: .9rem; color: #555; display: flex; justify-content: space-between; }
.badge { display:inline-block; padding:2px 8px; border-radius:999px; background:#efefef; font-size:.85rem; }
@media print {
  .no-print { display: none !important; }
  a[href]:after { content: ""; }
}
