/**
 * print.css — Print stylesheet for Annual Statement (and general app printing)
 *
 * Hides navigation chrome and shows only the main content area at full width.
 * Uses a clean white background with black text for readability in print/PDF.
 */

@media print {
  #sidebar,
  .app-header,
  #mobile-bottom-nav,
  .no-print {
    display: none !important;
  }

  .app-shell {
    display: block !important;
  }

  .app-content {
    width: 100% !important;
    padding: 0 !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card {
    border: 1px solid #e5e7eb !important;
    box-shadow: none !important;
  }
}
