/* ============================================================================
   ESPERALOYA — print.css v5.0
   #print-report está fuera de #app, justo antes de </body>
   ============================================================================ */

/* En pantalla: ocultar el bloque de impresión completamente */
#print-report {
  display: none !important;
}

@media print {
  /* Ocultar absolutamente todo */
  body > *  { display: none !important; }
  #app      { display: none !important; }

  /* Mostrar solo el bloque de impresión */
  #print-report {
    display: block !important;
    width: 100%;
    font-family: Arial, sans-serif;
    color: #111;
    background: white;
  }

  @page { size: 8.5in 11in; margin: 0.6in; }
}

/* ── Estilos del contenido impreso ───────────────────────────────────────── */
#print-report .print-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #0D1B2A;
}
#print-report .print-header h1 {
  font-size: 20px; margin: 0 0 4px;
  color: #0D1B2A; font-family: Arial, sans-serif;
}
#print-report .print-header p {
  font-size: 12px; color: #555; margin: 2px 0;
  font-family: Arial, sans-serif;
}

#print-report table {
  width: 100%; border-collapse: collapse;
  font-size: 11px; margin-bottom: 18px;
  font-family: Arial, sans-serif;
}
#print-report table th {
  text-align: left; padding: 6px 8px;
  background: #F1F5F9;
  border-bottom: 2px solid #0D1B2A;
  font-weight: 700; color: #0D1B2A;
}
#print-report table td {
  padding: 5px 8px;
  border-bottom: 1px solid #E2E8F0;
  color: #334155;
}
#print-report table tr:nth-child(even) td { background: #F8FAFC; }

#print-report .print-totals {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  border-top: 1px solid #E2E8F0;
  padding-top: 14px;
}
#print-report .print-totals div {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #F1F5F9;
}
#print-report .print-totals div.final {
  border-top: 2px solid #0D1B2A;
  border-bottom: none;
  padding-top: 12px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 15px;
}
