/* =========================================================================
   B.W.A Kft. — Igényfelmérő · nyomtatási / PDF nézet
   A „PDF letöltése” gomb a böngésző nyomtatásával ment PDF-et — az itteni
   szabályok adják a tiszta, tördelt dokumentumot.
   ========================================================================= */

@media print {

  @page {
    size: A4;
    margin: 14mm 13mm 16mm 13mm;
  }

  html, body {
    background: #fff !important;
    color: #111 !important;
    font-size: 10.5pt;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* képernyős felület elrejtése */
  #password-screen, #meshCanvas, #main-content, .no-print { display: none !important; }
  * { animation: none !important; transition: none !important; box-shadow: none !important; }

  /* csak a riport látszik */
  #print-report { display: block !important; }

  #print-report .report { color: #111; }

  /* fejléc / borító blokk */
  #print-report .rp-cover {
    border-bottom: 2px solid #b8860b;
    padding-bottom: 5mm;
    margin-bottom: 6mm;
  }
  #print-report .rp-cover-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8mm;
    margin-bottom: 4mm;
  }
  #print-report .rp-logo {
    width: 22mm; height: 22mm;
    background: #111 !important;
    animation: none !important;
  }
  #print-report .rp-studio { text-align: right; font-size: 8pt; color: #555; line-height: 1.5; }
  #print-report .rp-studio .name { font-family: "Playfair Display", serif; font-size: 11pt; color: #111; }
  #print-report .rp-title { font-family: "Playfair Display", serif; font-size: 19pt; color: #111; }
  #print-report .rp-sub { color: #b8860b; font-size: 8.5pt; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1.5mm; }
  #print-report .rp-meta { display: flex; flex-wrap: wrap; gap: 1mm 10mm; margin-top: 4mm; font-size: 9pt; color: #444; }
  #print-report .rp-meta b { color: #111; font-weight: 600; }

  /* szekciók */
  #print-report .rp-section { margin-top: 6mm; }
  #print-report .rp-section-title {
    font-family: "Playfair Display", serif;
    font-size: 13pt;
    color: #111;
    border-bottom: 1.5px solid #b8860b;
    padding-bottom: 1.5mm;
    margin-bottom: 3mm;
    break-after: avoid-page;
    page-break-after: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  #print-report .rp-section-title .sn { color: #b8860b; margin-right: 2mm; }

  /* kérdés-válasz blokkok: sosem törnek ketté */
  #print-report .rp-q {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    padding: 2.2mm 0;
    border-bottom: 0.5pt dotted #bbb;
  }
  #print-report .rp-q:last-child { border-bottom: none; }
  #print-report .rp-question { font-size: 9pt; color: #555; margin-bottom: 1mm; }
  #print-report .rp-question .qn { color: #b8860b; font-weight: 600; margin-right: 1.5mm; }
  #print-report .rp-answer { font-size: 10pt; color: #111; }
  #print-report .rp-answer ul { margin: 0.5mm 0 0 5mm; padding: 0; }
  #print-report .rp-answer li { margin-bottom: 0.5mm; break-inside: avoid; page-break-inside: avoid; }
  #print-report .rp-custom { color: #7a5c00; }
  #print-report .rp-custom::before { content: ""; }
  #print-report .rp-none { color: #999; font-style: italic; }
  #print-report .rp-skip {
    display: inline-block;
    color: #8a6d00;
    border: 0.75pt solid #c9a227;
    background: #fdf6dd !important;
    font-size: 8pt;
    padding: 0.4mm 2mm;
  }

  /* lábjegyzet-sor a dokumentum végén */
  #print-report .rp-foot {
    margin-top: 8mm;
    padding-top: 3mm;
    border-top: 0.75pt solid #ccc;
    font-size: 8pt;
    color: #777;
    display: flex;
    justify-content: space-between;
    gap: 6mm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  p { orphans: 3; widows: 3; }
}
