/* Citerank — shared print stylesheet. Link with media="print" on every tool page. */
@media print {
  /* Hide chrome */
  #cr-sidebar, .cr-tool-bar, .cr-action-bar, .cb-action-bar,
  #ct-run-btn, #ct-status-banner, .cr-btn, .cr-empty,
  #cr-empty, #ct-empty, #cb-launch, #cb-loading,
  button, .cr-sidebar-link, .cr-kw-expand,
  [style*="display:none"] { display: none !important; }

  /* Reset layout — no sidebar offset */
  body {
    padding-left: 0 !important;
    padding-top: 0 !important;
    background: #fff !important;
    color: #111 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 11pt !important;
  }

  /* Show results even if hidden by JS */
  #ct-results, #bi-results, #cb-brief-output, #sc-results,
  .cr-section, .cb-brief { display: block !important; }

  /* Color vars fallback for print */
  :root {
    --text: #111;
    --text-2: #333;
    --text-3: #666;
    --accent: #3b5bdb;
    --green: #2f9e44;
    --yellow: #e67700;
    --red: #c92a2a;
  }

  /* Cards */
  .cr-section, .cb-section, .cr-metric-card, .cr-insight-card,
  .cr-bar-row, .cb-brief-header {
    background: #fff !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  /* Page breaks */
  .cr-section { page-break-inside: avoid; margin-bottom: 16pt; }

  /* Branding header */
  body::before {
    content: "Citerank AI Visibility Report  ·  crawleye.vercel.app";
    display: block;
    font-size: 9pt;
    color: #666;
    border-bottom: 1pt solid #ccc;
    padding-bottom: 6pt;
    margin-bottom: 16pt;
  }

  /* Footer */
  body::after {
    content: "Generated by Citerank · crawleye.vercel.app";
    display: block;
    font-size: 8pt;
    color: #999;
    border-top: 1pt solid #ddd;
    margin-top: 24pt;
    padding-top: 6pt;
    text-align: center;
  }

  a { color: inherit; text-decoration: none; }
  svg { display: none; }
}
