/* =====================================================================
   Plateforme Mairie - Styles personnalisés
   Surcharge Bootstrap 5 avec l'identité visuelle "mairie"
   ===================================================================== */

:root {
  /* v2.9.6 — Palette officielle de la commune d'Ancy-Dornot
     Source : identité visuelle municipale (deux couleurs uniquement).
     Avant : bleu profond #1e3a5f + doré #d4a017.
     Apres : bleu fonce officiel #312783 + bleu clair officiel #63b9e9. */
  --mairie-primary:    #312783;   /* bleu fonce officiel (institutionnel) */
  --mairie-primary-2:  #63b9e9;   /* bleu clair officiel (mise en lumiere) */
  --mairie-accent:     #63b9e9;   /* bleu clair officiel utilise comme accent CTA */
  --mairie-accent-2:   #82c8ed;   /* version legerement plus claire pour hover */
  --mairie-bg:         #f8f9fb;   /* fond doux (inchange) */
  --mairie-surface:    #ffffff;
  --mairie-text:       #1a202c;
  --mairie-muted:      #6c757d;

  /* Statuts (avec versions claires pour les fonds) */
  --statut-attente:    #f59e0b;
  --statut-validee:    #16a34a;
  --statut-en-cours:   #2563eb;
  --statut-terminee:   #65a30d;
  --statut-refusee:    #dc2626;
  --statut-annulee:    #6b7280;

  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow:    0 1px 3px 0 rgba(0,0,0,0.08), 0 1px 2px -1px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
}

/* ----- Base ----- */
html, body {
  height: 100%;
}
body {
  background-color: var(--mairie-bg);
  color: var(--mairie-text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

main.main-container {
  flex: 1 0 auto;
  padding-top: 80px;
  padding-bottom: 3rem;
}

/* ----- Navbar ----- */
.navbar-mairie {
  background-color: var(--mairie-primary);
  box-shadow: var(--shadow-md);
}
.navbar-mairie .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}
.navbar-mairie .navbar-brand .brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--mairie-accent);
  color: var(--mairie-primary);
  border-radius: 8px;
  margin-right: 0.6rem;
  font-weight: 800;
}

/* Logo image (SVG/PNG) à la place du carré doré "M" */
.navbar-mairie .navbar-brand .brand-logo-img {
  height: 40px;
  width: auto;
  background: #fff;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.navbar-mairie .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  position: relative;
}
.navbar-mairie .nav-link:hover,
.navbar-mairie .nav-link.active {
  color: #fff !important;
}
.navbar-mairie .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.5rem; right: 0.5rem;
  height: 2px;
  background: var(--mairie-accent);
  border-radius: 2px;
}
.navbar-mairie .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 0.5rem;
}
.navbar-role-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--mairie-accent);
  color: var(--mairie-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-left: 0.4rem;
}
.cart-badge {
  position: absolute;
  top: 6px; right: 0;
  background: var(--mairie-accent);
  color: var(--mairie-primary);
  font-weight: 700;
  font-size: 0.65rem;
  border-radius: 999px;
  padding: 1px 6px;
}

/* ----- Séparateur visuel entre groupe gauche et groupe droit ----- */
.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  margin: 0 0.6rem;
}

/* ----- Icônes seules (sans label) en mode desktop ----- */
.nav-icon-only {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.nav-icon-only i {
  font-size: 1.15rem;
}

/* ----- Bouton Gestion : mise en avant pour les agents/admins ----- */
.nav-gestion .nav-link {
  background: rgba(212, 160, 23, 0.12);
  border-radius: 6px;
  margin: 0 0.2rem;
}
.nav-gestion .nav-link:hover {
  background: rgba(212, 160, 23, 0.22);
}

/* ----- Badge tâches en attente sur "Gestion" ----- */
.nav-taches-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 999px;
  margin-left: 0.3rem;
  vertical-align: middle;
  animation: pulse-badge 2s ease-in-out infinite;
  box-shadow: 0 0 0 2px var(--mairie-primary);
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* ----- Méga-menu Gestion (3 colonnes) ----- */
.mega-menu {
  min-width: min(95vw, 800px);
  max-width: 95vw;
  max-height: 80vh;       /* ne dépasse jamais l'écran */
  overflow-x: hidden;
  overflow-y: auto;       /* scroll de sécurité si trop d'items */
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 0.75rem;
}

/* Lien "Vue d'ensemble" en tête du méga-menu */
.mega-hub {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--mairie-primary), var(--mairie-primary-2));
  color: #fff !important;
  text-decoration: none;
  border-bottom: 3px solid var(--mairie-accent);
}
.mega-hub:hover {
  background: linear-gradient(135deg, var(--mairie-primary-2), var(--mairie-primary));
  color: #fff !important;
}
.mega-hub > i:first-child {
  font-size: 1.6rem;
  color: var(--mairie-accent);
}
.mega-hub .small {
  opacity: 0.85;
  font-size: 0.8rem;
}

/* Colonnes du méga-menu */
.mega-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 0;
  padding: 1rem;
  background: #fff;
}
.mega-col {
  padding: 0 0.5rem;
  border-right: 1px solid #e5e7eb;
}
.mega-col:last-child {
  border-right: none;
}
.mega-col-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--mairie-primary);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mairie-accent);
}
.mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  color: #334155;
  text-decoration: none;
  font-size: 0.92rem;
  transition: background 0.12s;
}
.mega-item:hover {
  background: #f1f5f9;
  color: var(--mairie-primary);
}
.mega-item i {
  margin-right: 0.4rem;
  color: var(--mairie-primary-2);
}
.mega-sep {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mairie-muted);
  margin: 0.75rem 0.5rem 0.3rem;
  padding-top: 0.4rem;
  border-top: 1px dashed #e5e7eb;
}

/* Mobile : empile les colonnes */
@media (max-width: 991px) {
  .mega-menu {
    min-width: 100%;
    max-width: 100%;
  }
  .mega-cols {
    grid-template-columns: 1fr;
  }
  .mega-col {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .mega-col:last-child {
    border-bottom: none;
  }
}

/* ----- Avatar initiales ----- */
.avatar-initiales {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}

/* ----- Cards / sections ----- */
.section-card {
  background: var(--mairie-surface);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.section-card h1, .section-card h2, .section-card h3 {
  margin-top: 0;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.section-title .icon-bubble {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mairie-primary), var(--mairie-primary-2));
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.section-subtitle {
  color: var(--mairie-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ----- Boutons ----- */
.btn-mairie {
  background-color: var(--mairie-primary);
  border-color: var(--mairie-primary);
  color: #fff;
}
.btn-mairie:hover, .btn-mairie:focus {
  background-color: var(--mairie-primary-2);
  border-color: var(--mairie-primary-2);
  color: #fff;
}
.btn-accent {
  background-color: var(--mairie-accent);
  border-color: var(--mairie-accent);
  color: var(--mairie-primary);
  font-weight: 600;
}
.btn-accent:hover, .btn-accent:focus {
  background-color: var(--mairie-accent-2);
  border-color: var(--mairie-accent-2);
  color: var(--mairie-primary);
}

/* ----- Badges statut ----- */
.badge-statut {
  font-size: 0.75rem;
  padding: 0.4em 0.7em;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.statut-en_attente { background: #fef3c7; color: #92400e; }
.statut-validee    { background: #d1fae5; color: #065f46; }
.statut-en_cours   { background: #dbeafe; color: #1e40af; }
.statut-terminee   { background: #ecfccb; color: #3f6212; }
.statut-refusee    { background: #fee2e2; color: #991b1b; }
.statut-annulee    { background: #e5e7eb; color: #374151; }

/* ----- Cards catalogue ----- */
.card-catalogue {
  border: none;
  box-shadow: var(--shadow);
  border-radius: 0.75rem;
  transition: transform .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.card-catalogue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.card-catalogue .card-img-top {
  height: 180px;
  object-fit: cover;
  background: #e2e8f0;
}
.card-catalogue .placeholder-img {
  height: 180px;
  background: linear-gradient(135deg, var(--mairie-primary), var(--mairie-primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 3rem;
}

/* ----- Footer ----- */
footer.footer {
  flex-shrink: 0;
  background-color: var(--mairie-primary);
  color: rgba(255,255,255,0.8);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}
footer.footer a { color: var(--mairie-accent); }
.footer-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.25rem 0.85rem;
  border: 1px solid var(--mairie-accent);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer-feedback:hover {
  background: var(--mairie-accent);
  color: var(--mairie-primary) !important;
}
footer.footer .badge {
  vertical-align: middle;
  animation: pulse-beta 2s ease-in-out infinite;
}
@keyframes pulse-beta {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* ----- Timeline historique (qui a fait quoi) ----- */
.timeline-historique { margin: 0.5rem 0 0; }
.timeline-historique li {
  display: flex;
  gap: 0.7rem;
  padding-bottom: 0.85rem;
  position: relative;
}
.timeline-historique li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13px; top: 28px; bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.timeline-historique .hist-icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mairie-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 1;
}
.timeline-historique .hist-corps { padding-top: 3px; }

/* ----- Toasts ----- */
.toast-container-fixed {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1080;
}

/* ----- Empty states ----- */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--mairie-muted);
}
.empty-state i {
  font-size: 3rem;
  opacity: 0.4;
  margin-bottom: 1rem;
}

/* ----- Bloc info "salle/matériel" sur les détails ----- */
.info-block {
  background: #f1f5f9;
  border-left: 4px solid var(--mairie-primary);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* ----- Pills de compteurs (toutes_reservations) ----- */
.compteur-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--mairie-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform .1s, box-shadow .1s;
}
.compteur-pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: var(--mairie-primary);
}
.compteur-pill.active {
  outline: 2px solid var(--mairie-primary);
  font-weight: 600;
}
.compteur-pill .compteur-nb {
  font-weight: 700;
  font-size: 1.05rem;
}
/* couleurs reprenant les statuts */
.compteur-pill.statut-en_attente { background:#fef3c7; }
.compteur-pill.statut-validee    { background:#d1fae5; }
.compteur-pill.statut-en_cours   { background:#dbeafe; }
.compteur-pill.statut-terminee   { background:#ecfccb; }
.compteur-pill.statut-refusee    { background:#fee2e2; }
.compteur-pill.statut-annulee    { background:#e5e7eb; }
.compteur-pill.compteur-alerte   { background:#fff7ed; border-color:#f59e0b; color:#b45309; }
.compteur-pill.compteur-alerte.active { outline-color:#f59e0b; }

/* ----- Fil de commentaires (chat) ----- */
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fb;
  border-radius: 10px;
  max-height: 600px;
  overflow-y: auto;
}
.chat-message {
  display: flex;
  gap: 0.6rem;
  max-width: 85%;
}
.chat-message.chat-left {
  align-self: flex-start;
}
.chat-message.chat-right {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.chat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.chat-message.chat-right .chat-content {
  align-items: flex-end;
}
.chat-meta {
  font-size: 0.82rem;
}
.chat-bubble {
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}
.chat-bubble-user {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top-left-radius: 4px;
}
.chat-bubble-mairie {
  background: var(--mairie-primary);
  color: #fff;
  border-top-right-radius: 4px;
}

/* ----- Calendar/planning ----- */
.fc .fc-button-primary {
  background-color: var(--mairie-primary) !important;
  border-color: var(--mairie-primary) !important;
}
.fc .fc-button-primary:hover {
  background-color: var(--mairie-primary-2) !important;
}
/* Rendu custom des events : motif en gras + nom en dessous */
.fc-ev-time { font-size: 0.7rem; opacity: 0.9; }
.fc-ev-motif { font-weight: 700; font-size: 0.78rem; line-height: 1.15; white-space: normal; }
.fc-ev-nom { font-size: 0.72rem; opacity: 0.92; line-height: 1.1; white-space: normal; }
/* v2.9.2 : ligne "salle" dans la card de l'event en vue "Toutes les salles" */
.fc-ev-salle {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.15;
  white-space: normal;
  margin-top: 1px;
}
.fc-ev-salle .bi { font-size: 0.85em; opacity: 0.85; }

/* v2.7.0 — Empty state v2 (composant render_empty_state) */
.empty-state-v2 {
  text-align: center;
  padding: 2.5rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.empty-state-illu {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.empty-state-illu-primary   { background: #cfe2ff; color: #084298; }
.empty-state-illu-success   { background: #d1e7dd; color: #0f5132; }
.empty-state-illu-warning   { background: #fff3cd; color: #664d03; }
.empty-state-illu-danger    { background: #f8d7da; color: #842029; }
.empty-state-illu-info      { background: #cff4fc; color: #055160; }
.empty-state-illu-secondary { background: #e9ecef; color: #495057; }
.empty-state-title {
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}
.empty-state-desc {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.empty-state-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* v2.7.0 — Stepper de statut (fiche detail resa / manif) */
.status-stepper {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 1rem 0.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.status-stepper .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 90px;
  padding: 0 0.4rem;
  flex-shrink: 0;
}
.status-stepper .step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dee2e6;
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  border: 2px solid #dee2e6;
  transition: all 0.2s;
}
.status-stepper .step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6c757d;
  line-height: 1.15;
}
.status-stepper .step-meta {
  font-size: 0.68rem;
  color: #6c757d;
  opacity: 0.85;
  margin-top: 0.15rem;
  line-height: 1.1;
}
.status-stepper .step-connector {
  flex: 1 1 auto;
  height: 3px;
  background: #dee2e6;
  margin: 18px 0 0 0;  /* aligne avec le centre des icones */
  min-width: 24px;
  border-radius: 2px;
}

/* Etape franchie */
.status-stepper .step-done .step-icon {
  background: #198754;
  color: #fff;
  border-color: #198754;
}
.status-stepper .step-done .step-label { color: #198754; }
.status-stepper .step-connector-done { background: #198754; }

/* Etape courante */
.status-stepper .step-current .step-icon {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.18);
}
.status-stepper .step-current .step-label {
  color: #0d6efd;
  font-weight: 700;
}

/* Etape morte (refusee / annulee) */
.status-stepper .step-failed .step-icon {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.18);
}
.status-stepper .step-failed .step-label {
  color: #dc3545;
  font-weight: 700;
}
.status-stepper .step-connector-dead {
  background: #dc3545;
  opacity: 0.35;
}

/* Etape sautee (vue post-mortem) */
.status-stepper .step-skipped { opacity: 0.4; }
.status-stepper .step-skipped .step-icon {
  background: #fff;
  border-style: dashed;
}

@media (max-width: 575px) {
  .status-stepper .step { min-width: 70px; }
  .status-stepper .step-label { font-size: 0.7rem; }
  .status-stepper .step-meta  { font-size: 0.62rem; }
}

/* v2.5.1 — rendu compact des manifestations en vue mois (une ligne) */
.fc-manif-month {
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1px 2px;
}
.fc-manif-month-lieu {
  font-weight: 400;
  opacity: 0.85;
}

/* ----- Responsive tweaks ----- */
@media (max-width: 768px) {
  main.main-container {
    padding-top: 70px;
  }
  .section-card { padding: 1rem; }
  .section-title .icon-bubble { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ============================================================ */
/* ----- @media print : version impression ----- */
/* ============================================================ */
@media print {
  /* Masquer tout le chrome (nav, footer, boutons d'action) */
  .navbar, footer.footer, .btn, .dropdown,
  .no-print, [data-bs-toggle], .form-check, .nav, .nav-pills,
  .pagination, .toast-container-fixed, .modal {
    display: none !important;
  }

  /* Fond et couleurs simples pour économiser l'encre */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
  }
  main.main-container {
    padding-top: 0 !important;
    max-width: 100% !important;
  }

  /* Cards : pas d'ombre, bordure simple */
  .section-card, .card, .info-block, .alert {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
  }

  /* Pas de couleurs de fond gourmandes en encre */
  .section-card { background: #fff !important; }
  .icon-bubble { display: none !important; }

  /* Tableaux : grille noire pour la lisibilité */
  table { border-collapse: collapse !important; width: 100%; }
  table th, table td { border: 1px solid #999 !important; padding: 4px 6px !important; }
  thead { background: #eee !important; }

  /* Badges en noir pour l'impression */
  .badge { border: 1px solid #000; background: #fff !important; color: #000 !important; }

  /* Lien : pas de soulignement bleu */
  a { color: #000 !important; text-decoration: none !important; }

  /* En-tête imprimable */
  .print-header {
    display: block !important;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
  }
  .print-only { display: block !important; }
}
.print-header, .print-only { display: none; }
