/* public/print.css */
@media print {
  /* Keeps headers attached to the following content */
  h1, h2, h3, h4 {
    page-break-after: avoid !important;
    break-after: avoid !important;
  }

  /* Keeps images and tables from being sliced in half */
  img, table, pre, blockquote {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* Prevents single lines of text at page ends */
  p {
    orphans: 3;
    widows: 3;
  }
}
