/* Print-only styling for the AI Brand Audit's "Download PDF report" button.
   Loaded with media="print" so it never affects the on-screen view -
   triggering a real PDF requires no extra dependency: window.print() opens
   the browser's print dialog, where "Save as PDF" produces the file. */

@media print {
  @page {
    size: A4;
    margin: 14mm;
  }

  body {
    background: #ffffff;
  }

  .site-nav,
  .tools-drawer,
  .site-footer,
  .tool-header,
  .audit-gate-card,
  .tool-form,
  .related-tools,
  .profile-bar,
  .account-notice,
  .modal-overlay,
  .shot-results__header,
  .report-actions,
  #auditLoading,
  .toast-container {
    display: none !important;
  }

  .print-header {
    display: block !important;
    margin-bottom: 14px;
  }
  .print-header h1 {
    margin: 0 0 4px;
    font-size: 20px;
  }
  .print-header p {
    margin: 0;
    color: #555;
    font-size: 12px;
  }

  .audit-score-card,
  .audit-stats-row,
  .audit-piece-card,
  .audit-pattern-card,
  .audit-action-plan,
  .audit-rewrite-card {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .audit-piece-card {
    border: 1px solid #ccc;
  }
}
