/* css/print.css — Styles impression */

@media print {
  .no-print { display: none !important; }
  .print-only { display: block !important; }

  header, #toast, .grille-actions, .grille-nav { display: none !important; }

  body {
    background: white;
    color: black;
    font-size: 10pt;
  }

  .view { max-width: none; padding: 0; }

  .recap-table {
    width: 100%;
    border-collapse: collapse;
    page-break-inside: auto;
  }

  .recap-table th,
  .recap-table td {
    border: 1px solid #333;
    padding: 3px 5px;
    font-size: 8pt;
  }

  .recap-table th {
    background: #eee !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .recap-print-header {
    text-align: center;
    margin-bottom: 1cm;
  }

  .recap-print-header .print-logo {
    height: 20mm;
    margin-bottom: 0.5cm;
  }

  .recap-signatures {
    display: flex;
    justify-content: space-between;
    padding: 0.5cm 0;
  }

  .recap-sig-zone {
    width: 45%;
    border: 1px solid #999;
    padding: 5mm;
    min-height: 15mm;
    font-size: 8pt;
  }

  .week-separator td {
    border: none !important;
    height: 3mm;
  }

  .signature-row td {
    border-left: none !important;
    border-right: none !important;
  }
}

/* Masquer par defaut les elements print-only */
.print-only { display: none; }
