/* Print styles for clean PDF output */
@media print {
  /* Use paper-like padding and plain background */
  html, body { background: white !important; color: black !important; }
  body { padding: 24px !important; }

  /* Hide app UI chrome */
  header, nav, .preview-topbar, .dark-mode-toggle, .btn { display: none !important; }

  /* Make preview content use full width */
  .preview-card, .invoice-form, .template-card { box-shadow: none !important; border: none !important; }

  /* Ensure tables print cleanly */
  .table { width: 100% !important; border-collapse: collapse !important; }
  .table th, .table td { border: 1px solid #ddd !important; padding: 6px !important; }

  /* Avoid page-break inside lines */
  tr { page-break-inside: avoid; }
}
