/*
 * Print support for the payroll report tables. A ten-column table at
 * normal screen font runs off the right edge of A4 portrait — this is
 * the one thing Tailwind utilities alone can't express (the @page rule),
 * so it lives here rather than as inline styles.
 */
@page {
  size: A4 portrait;
  margin: 10mm;
}

@media print {
  .payroll-report-table {
    table-layout: fixed;
    width: 100%;
    font-size: 7px;
  }

  .payroll-report-table th,
  .payroll-report-table td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 1mm 0.5mm;
  }
}
