/* Print layout for invoices and proposals (Phase 3 / Phase 4).
   Loaded with media="print". The document to print is rendered into #print-root,
   which is the only thing visible when printing. */

@page { size: Letter; margin: 18mm 16mm; }

@media print {
  body * { visibility: hidden; }
  #print-root, #print-root * { visibility: visible; }
  #print-root {
    position: absolute;
    inset: 0;
    background: #fff;
    color: #1a1a1a;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 11pt;
    line-height: 1.5;
  }
  .no-print { display: none !important; }
}

/* Shared document styling (also used for on-screen preview inside a .doc-preview box). */
.doc {
  color: #1a1a1a;
  font-family: 'Roboto', Arial, sans-serif;
}
.doc .doc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.doc .doc-head .biz { font-family: 'Fredoka', Arial, sans-serif; }
.doc .doc-head .biz .name { font-size: 15pt; font-weight: 600; color: #3F4A20; letter-spacing: .04em; }
.doc .doc-title { font-family: 'Fredoka', Arial, sans-serif; font-size: 20pt; font-weight: 500; margin-bottom: 2px; }
.doc .doc-meta { font-size: 10pt; color: #555; }
.doc .parties { display: flex; gap: 40px; margin: 20px 0 26px; font-size: 10.5pt; }
.doc .parties h4 { font-size: 8.5pt; text-transform: uppercase; letter-spacing: .06em; color: #888; margin-bottom: 4px; }
.doc table.lines { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 10.5pt; }
.doc table.lines th { text-align: left; border-bottom: 1.5px solid #3F4A20; padding: 7px 8px; font-size: 8.5pt; text-transform: uppercase; letter-spacing: .04em; color: #555; }
.doc table.lines td { padding: 7px 8px; border-bottom: 1px solid #e2e2e2; vertical-align: top; }
.doc table.lines td.num, .doc table.lines th.num { text-align: right; font-variant-numeric: tabular-nums; }
.doc .totals { margin-left: auto; width: 52%; font-size: 10.5pt; }
.doc .totals .row { display: flex; justify-content: space-between; padding: 4px 8px; }
.doc .totals .row.grand { border-top: 1.5px solid #3F4A20; font-weight: 600; font-size: 12pt; margin-top: 4px; padding-top: 8px; }
.doc .section { margin: 16px 0; }
.doc .section h3 { font-family: 'Fredoka', Arial, sans-serif; font-size: 12pt; margin-bottom: 4px; }
.doc .doc-foot { margin-top: 34px; padding-top: 12px; border-top: 1px solid #ddd; font-size: 9.5pt; color: #666; white-space: pre-wrap; }
