/* Stiluri de print pentru previzualizarea raportului (A4 portret).
   PDF-ul principal se generează cu jsPDF; acesta e pentru previzualizare/print de rezervă. */

@media print {
  .app-header, .bottom-nav, .fab, .toast-region, .update-banner, .offline-bar,
  .no-print { display: none !important; }
  .app-main { padding: 0; max-width: none; }
  body { background: #fff; color: #000; }
}

@page { size: A4 portrait; margin: 16mm; }

.report-print {
  color: #000; background: #fff;
  font-size: 11pt; line-height: 1.4;
  max-width: 180mm; margin: 0 auto;
}
.report-print h1 { font-size: 18pt; }
.report-print .report-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid #000; padding-bottom: 8pt; margin-bottom: 12pt; }
.report-print .report-logo { max-height: 48px; }
.report-print table { width: 100%; border-collapse: collapse; margin: 8pt 0; }
.report-print th, .report-print td { text-align: left; padding: 4pt 6pt; border-bottom: 1px solid #999; vertical-align: top; }
.report-print .photos { display: grid; grid-template-columns: 1fr 1fr; gap: 6pt; }
.report-print .photos img { width: 100%; height: auto; break-inside: avoid; }
.report-print .signature { margin-top: 24pt; }
.report-print .disclaimer-print { font-size: 8pt; color: #333; border-top: 1px solid #999; margin-top: 16pt; padding-top: 6pt; }
