
.print-header {
    display:none;
}

@media print {
  body {
    background: #fff !important;
    color: #000 !important;    
    line-height: 1.5;
  }

  header, nav, aside, button, .dt-container, .btn, .no-print {
    display: none !important;
  }

  a {
    color: #000;
    text-decoration: none;
  }  

  img {
    max-width: 100%;
    height: auto;
  }
  
  @page {
    size: A4;    
  }

  .container, .container-fluid, .col-lg-6, .print-100w {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;        
  }

  /* Druck-Kopf mit Logo und Datum */
  .print-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
  }

  .print-header img {
    max-height: 50px;
  }

  /* Tabellenformatierung */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 10pt;
    page-break-after:always;
  }

  th, td {
    border: 1px solid #000;
    padding: 6px;
    text-align: left;
  }

  thead {
    display: table-header-group;
  }

  tfoot {
    display: table-footer-group;
  }

  tr {
    page-break-inside: avoid;
  }
}