/* Print / "Save as PDF" layout for Evidence Codex reports.
   On screen the report container is hidden; when printing, everything else is
   hidden and only the branded report prints. */

.ec-print-report { display: none; }

@media print {
  body > *:not(#ec-print-report) { display: none !important; }
  #ec-print-report { display: block !important; color: #12160f; font-family: Georgia, "Times New Roman", serif; }
  @page { margin: 16mm; }

  .ecp-head { display: flex; justify-content: space-between; align-items: center;
    border-bottom: 2px solid #14603a; padding-bottom: 12px; margin-bottom: 20px; }
  .ecp-brand { display: flex; align-items: center; gap: 10px; }
  .ecp-mark { width: 32px; height: 32px; border-radius: 50%; background: #14603a; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
  .ecp-name { font-weight: 700; font-size: 19px; color: #14603a; letter-spacing: 0.01em; }
  .ecp-meta { color: #555; font-size: 11px; text-align: right; }
  .ecp-title { font-size: 24px; margin: 0 0 4px; color: #12160f; }
  .ecp-sub { color: #555; margin: 0 0 18px; font-size: 13px; }
  .ecp-body h3 { font-size: 15px; margin: 20px 0 8px; color: #14603a; }
  .ecp-body table { width: 100%; border-collapse: collapse; font-size: 11.5px; margin: 6px 0 14px; }
  .ecp-body th, .ecp-body td { border: 1px solid #cfd6cc; padding: 6px 9px; text-align: left; vertical-align: top; }
  .ecp-body th { background: #eef3ec; font-family: Georgia, serif; }
  .ecp-body .value, .ecp-body .mono { font-family: "Courier New", monospace; }
  .ecp-body .muted { color: #666; }
  .ecp-body .result-stat { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #e2e6df; }
  .ecp-body .badge { border: 1px solid #999; border-radius: 10px; padding: 1px 7px; font-size: 9px; text-transform: uppercase; }
  .ecp-foot { margin-top: 26px; padding-top: 10px; border-top: 1px solid #cfd6cc; color: #777; font-size: 10px; line-height: 1.5; }
}
