/**
 * ===========================================================================
 * PRINT STYLES — AI Agent for Teachers
 * Document Printing & PDF Generation Rules (Doc Pages)
 * ===========================================================================
 */

@media print {
  html,
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Hide interactive controls and chrome */
  .toggle,
  nav.foot,
  #back-btn,
  .btn,
  .hero .btn,
  .loading {
    display: none !important;
  }

  a {
    color: #000000 !important;
    text-decoration: none !important;
  }

  /* Avoid awkward page breaks */
  pre,
  blockquote,
  table,
  tr,
  .map-wrap,
  .card,
  .stat,
  .module-card,
  .resource-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }

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

  /* Force borders to print cleanly */
  table,
  th,
  td,
  blockquote,
  .card,
  .stat,
  .map-wrap {
    border-color: #cccccc !important;
    box-shadow: none !important;
  }

  th {
    background: #f0f0f0 !important;
    color: #000000 !important;
  }
}
