
  @media print {
    @page {
      size: A4;
      margin: 5mm 0mm 20mm 0mm;
  
      @bottom-center {
        content: var(--footer-text);
        background-color: rgb(50, 50, 50);
        white-space: pre;
        color: white;
        padding: 20px;
        padding-top: 20px;
        font-size: 12px;
        border-top-left-radius: 40%;
        border-top-right-radius: 40%;
      }
    }
    .page {
        page-break-after: always;
      }
  
    body {
      background: white;
    }
  
    thead {
      display: table-header-group;
    }
  
    tr, td {
      break-inside: avoid;
    }
  
    .no-break{
      break-inside: avoid;
    }
  
  }
  