/* ============================================
   EXPORT PDF OBSIDIAN - Anti-découpe
   ============================================ */

@media print {

  /* Empêche les tableaux d'être coupés entre deux pages */
  table {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* Empêche une ligne de tableau d'être coupée */
  table tr {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* Garde l'en-tête du tableau avec la première ligne */
  table thead {
    display: table-header-group !important;
    page-break-inside: avoid !important;
  }

  /* Empêche les images d'être coupées */
  img {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    max-width: 100% !important;
  }

  /* Empêche les diagrammes Mermaid d'être coupés */
  .mermaid {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* Évite qu'un titre soit séparé de son contenu */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid !important;
    break-after: avoid !important;
  }

  /* Évite qu'un paragraphe soit coupé */
  p, li, blockquote {
    orphans: 3;
    widows: 3;
  }

  /* Marges de page optimisées */
  @page {
    margin: 1.5cm;
    size: A4;
  }

  /* Réduit légèrement la taille pour tout faire tenir */
  body {
    font-size: 11px !important;
  }
}
