/* ============================================================
   IMPRESSION — styles @media print
   ============================================================ */

/* Classe utilitaire — masque un élément à l'impression */
.no-print { display: none !important; }

@media print {
  /* Masquer tout sauf la modale active d'impression */
  body > *:not(#modal-note-frais) { display: none !important; }

  /* Éléments toujours masqués à l'impression */
  .sidebar,
  .global-topbar,
  .mobile-topbar,
  .mobile-bottom-nav,
  .btn, .btn-ghost, .btn-primary, .btn-sm,
  .modal-close,
  .modal-header-actions,
  #dev-banner,
  #mail-test-banner { display: none !important; }

  /* Note de frais */
  #modal-note-frais { position: static !important; background: none !important; }
  #modal-note-frais .modal { box-shadow: none !important; max-width: 100% !important; }
  .modal-header { border-bottom: 2px solid #000 !important; }
  #ndf-btn-payer { display: none !important; }
  .ndf-table th  { background: #f5f5f5 !important; -webkit-print-color-adjust: exact; }
  .ndf-resume    { background: #f5f5f5 !important; }
  .ndf-virement  { border: 1px solid #999 !important; }
}


