@media print {
  html, body {
    height: 100%;
}
  button, .btn, .btn-outline, .btn-shadow {
    display: none !important;
  }
  header nav, footer {
    display: none !important;
  }
  [aria-label="Call to Action"] {
    display: none !important;
  }

  [aria-label="Main Content"] {
    padding-bottom: 20px !important;
    margin-top: -42px !important;
  }

  .page-break {
    page-break-after: always;
  }

  .print-middle {
    /* print:flex print:items-center print:min-h-screen */
    display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 90vh;
  }

} 