/* ═══════════════════════════════════════════════════════════════════════
   print.css — Mode impression web (Ctrl+P) — optimisation des pages imprimables
   ─────────────────────────────────────────────────────────
   Extrait de astro_app_V3.8.9.html lignes 1846-1929 (Phase 2 du refactoring).
   Cascade : ce fichier doit être chargé dans l'ordre indiqué dans index.html.
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════
   MODE IMPRESSION WEB (v3.0) — Optimisation pour Ctrl+P
══════════════════════════════════════════════════════════════════════════ */
@media print {
  /* Cacher tout ce qui n'est pas le résultat */
  .header-meta,
  .form-panel,
  .tabs,
  .client-welcome,
  .client-ethics,
  .footer-note,
  .btn-primary,
  .btn-secondary,
  .btn-export-pdf,
  .btn-mini,
  #themes-recents-bloc,
  .options-accordion {
    display: none !important;
  }

  /* La main devient pleine largeur */
  .main {
    grid-template-columns: 1fr !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .results-panel {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* Couleurs respectées + meilleur contraste papier */
  body {
    background: white !important;
    color: black !important;
    font-size: 11pt !important;
  }

  .theme-header {
    border-bottom: 2px solid #333 !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.8rem !important;
  }

  /* Tableaux : coupes propres */
  .astro-table {
    page-break-inside: auto;
    font-size: 9pt !important;
  }

  .astro-table tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }

  /* Sections : ne pas couper au milieu */
  .section,
  .interp-box,
  .horoscope-card {
    page-break-inside: avoid;
  }

  /* Headers de section : reste avec contenu */
  .section-title,
  h4 {
    page-break-after: avoid;
  }

  /* Liens : retirer le soulignement web et mettre en noir */
  a {
    color: #333 !important;
    text-decoration: none !important;
  }

  /* En-tête imprimé : titre simple en haut de page */
  @page {
    margin: 1.5cm;
    size: A4;
  }
}

