/* my_custom_app/public/css/portal.print.css */
@media print {
  /* Background & typography */
  html, body { background: #fff !important; color: #000 !important; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* Hide navigation chrome */
  .sidebar, .tabbar, .sidebar__nav, .avatar-dropdown, .nav, .skip-link { display: none !important; }

  /* Expand main content */
  .portal-layout { display: block !important; padding: 0 !important; margin: 0 !important; }
  .main { padding: 0 !important; margin: 0 !important; }
  .card, .panel, .kpi-card, .lease-wrapper { box-shadow: none !important; background: #fff !important; border: 1px solid #ddd !important; }

  /* Links show URLs when helpful */
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #444; }
  a.btn-primary::after, a.btn-link::after { content: ""; }

  /* Avoid page breaks mid‑section */
  h1, h2, h3, .card, .panel, table { page-break-inside: avoid; break-inside: avoid; }
}

