/* ===========================
   Boys Coaching Centre Print Styles
   Clean, Audit-Safe Output
   =========================== */

@media print {
  body {
    font-family: "Times New Roman", serif;
    font-size: 12pt;
    color: #000;
    background: #fff !important;
  }

  /* Remove navigation, footer, floating buttons */
  nav, footer, .whatsapp-float, .navbar.fixed-bottom {
    display: none !important;
  }

  /* Remove background colors and shadows */
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #000 !important;
    page-break-after: avoid;
  }

  /* Links: show URL in brackets */
  a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  /* Tables: clean borders */
  table {
    border-collapse: collapse;
    width: 100%;
  }
  th, td {
    border: 1px solid #000;
    padding: 6px;
    text-align: left;
  }

  /* Images: scale neatly */
  img {
    max-width: 100%;
    height: auto;
    border: none;
  }

  /* Page breaks for audit clarity */
  .page-break {
    page-break-before: always;
  }

  /* Hide buttons */
  .btn {
    display: none !important;
  }

  /* Notices and reports: emphasize content */
  .card, .card-body {
    border: none !important;
    padding: 0 !important;
  }
}
