/**
 * print.css — @media print rules for the three compiled outputs
 * (spec §4.15-§4.17). Loaded with media="print" from index.html so it
 * never affects on-screen rendering.
 */

@media print {
  .no-print,
  .app-bar,
  .side-rail,
  .bottom-tabs,
  .breadcrumb-bar,
  .print-actions,
  .tab-bar {
    display: none !important;
  }

  body, .app-main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .card, .print-section {
    box-shadow: none !important;
    border: none !important;
    break-inside: avoid;
  }

  .print-section {
    page-break-inside: avoid;
  }

  .print-table, .data-table {
    width: 100%;
    border-collapse: collapse;
  }

  .print-table th, .print-table td,
  .data-table th, .data-table td {
    border: 1px solid #999;
    padding: 4px 6px;
    font-size: 11px;
  }

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

  .pill {
    border: 1px solid #999;
    background: none !important;
    color: #000 !important;
  }
}
