/* Print stylesheet — ensures proper formatting when users print any page */

@media print {
  /* Hide non-essential elements */
  header, footer, nav, .chatbot, button, 
  [data-testid="chatbot-toggle"],
  .sticky, .fixed,
  iframe { display: none !important; }

  /* Ensure readable text */
  body {
    font-size: 12pt;
    color: #000 !important;
    background: #fff !important;
  }

  h1, h2, h3 {
    color: #193866 !important;
    page-break-after: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }

  a[href^="#"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: "";
  }

  img {
    max-width: 100% !important;
  }

  .no-print { display: none !important; }

  /* Page breaks */
  section { page-break-inside: avoid; }
}
