/* ============================================================
   Print Stylesheet — ذمة PDF Export
   Loaded with media="print" — only active during window.print()
   ============================================================ */

@page {
  size: A4;
  margin: 15mm 20mm;
}

/* Hide the entire app UI and modal on print */
#app,
#modal-overlay {
  display: none !important;
}

/* Show only the populated print container */
#print-report {
  display: block !important;
}

/* ── Base ──────────────────────────────────────────────── */

body {
  font-family: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 10pt;
  color: #000;
  background: #fff;
  direction: rtl;
  font-variant-numeric: tabular-nums;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Report Header ─────────────────────────────────────── */

.print-header {
  border-bottom: 2pt solid #1a3a5c;
  padding-bottom: 10pt;
  margin-bottom: 16pt;
}

.print-logo {
  font-size: 18pt;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1;
}

.print-meta {
  font-size: 9pt;
  color: #6b7280;
  margin-top: 4pt;
}

/* ── Summary Grid ──────────────────────────────────────── */

.print-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8pt;
  margin-bottom: 18pt;
}

.print-summary-item {
  border: 1pt solid #e8eaed;
  border-radius: 5pt;
  padding: 7pt;
}

.print-summary-label {
  font-size: 7.5pt;
  color: #6b7280;
  margin-bottom: 3pt;
}

.print-summary-value {
  font-size: 11pt;
  font-weight: 700;
  color: #1c1e21;
}

/* ── Sections ──────────────────────────────────────────── */

.print-section {
  margin-bottom: 16pt;
}

.print-section-title {
  font-size: 11pt;
  font-weight: 700;
  color: #1a3a5c;
  border-bottom: 1pt solid #e8eaed;
  padding-bottom: 4pt;
  margin-bottom: 8pt;
}

/* ── Tables ────────────────────────────────────────────── */

.print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 8.5pt;
}

.print-table th {
  text-align: right;
  background: #f8f9fb;
  border: 0.5pt solid #d1d5db;
  padding: 4pt 6pt;
  font-weight: 600;
  color: #374151;
}

.print-table td {
  text-align: right;
  border: 0.5pt solid #e5e7eb;
  padding: 3.5pt 6pt;
  vertical-align: middle;
}

.print-table tbody tr:nth-child(even) td {
  background: #f9fafb;
}

.print-center {
  text-align: center !important;
}

.print-empty {
  text-align: center !important;
  color: #9ca3af;
  padding: 10pt !important;
}

/* ── Page Break ────────────────────────────────────────── */

.print-page-break {
  page-break-before: always;
}

/* Avoid breaking table rows across pages */
.print-table tbody tr {
  page-break-inside: avoid;
}

/* ── Footer ────────────────────────────────────────────── */

.print-footer {
  margin-top: 16pt;
  border-top: 0.5pt solid #e8eaed;
  padding-top: 6pt;
  font-size: 7.5pt;
  color: #9ca3af;
  text-align: center;
}
