/* ============================================================
   PRINT: nur Stundenzettel drucken
   ============================================================ */

@media print {
  body * {
    visibility: hidden;
  }

  .timesheet, .timesheet * {
    visibility: visible;
  }

  .timesheet {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    padding: 0;
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .timesheet h2, .timesheet h3 {
    color: #000;
  }

  .data-table {
    page-break-inside: avoid;
  }

  .data-table th {
    background: #eee !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Statushinweise und Bedienelemente nicht drucken */
  .no-print,
  .btn-row,
  .filter-row,
  .banner {
    display: none !important;
  }

  /* Sonntag/Feiertag in Tabelle stärker hervorheben */
  .row-sunday td,
  .row-holiday td {
    font-style: italic;
  }

  @page {
    margin: 1.5cm;
  }
}
