@media print {
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  table {
    page-break-inside: avoid;
  }

  /* Add more print-specific styles as needed */
} 