/* ============================================================
   TAD — Transport À la Demande
   Communauté de Communes du Clunisois
   Design system institutionnel, sobre et responsive.
   ============================================================ */

/* ---------- Variables de thème ---------- */
:root {
  /* Fond & surfaces */
  --background: #F8FAFC;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F9;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Textes */
  --text: #1F2937;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;

  /* Couleur institutionnelle (Clunisois) */
  --action: #E2AF4B;
  --action-hover: #D29C3A;
  --action-contraste: #2A2A20;
  --sidebar: #303830;
  --sidebar-active: #3D463C;

  /* Couleurs fonctionnelles */
  --success: #16A34A;
  --warning: #D97706;
  --danger: #DC2626;
  --info: #2563EB;

  /* Rayons & ombres */
  --radius: 8px;
  --radius-grand: 12px;
  --shadow: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.06);
  --shadow-grand: 0 4px 12px rgba(16,24,40,.08);

  --sidebar-largeur: 250px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--action); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0 0 .4rem; font-weight: 600; color: var(--text); }
h1 { font-size: 26px; }
h2 { font-size: 19px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
p { margin: 0 0 .6rem; }
small { font-size: 13px; color: var(--text-secondary); }
img { max-width: 100%; }

/* ---------- Mise en page ---------- */
.sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--sidebar-largeur);
  background: var(--sidebar);
  color: #fff;
  padding: 20px 16px;
  overflow-y: auto;
  z-index: 60;
  display: flex;
  flex-direction: column;
}
.sidebar-entete { margin-bottom: 16px; }
.sidebar-entete .logo { width: 100%; max-width: 210px; height: auto; display: block; }
.souse-titre, .sous-titre {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: .2px;
}
.menu { flex: 1; }
.menu-titre-section {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.5);
  margin: 18px 0 6px;
  padding-left: 6px;
}
.menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  padding: 8px 10px;
  border-radius: var(--radius);
  margin-bottom: 2px;
  font-size: 14px;
}
.menu a:hover { background: var(--sidebar-active); color: #fff; text-decoration: none; }
.menu a.active { background: var(--sidebar-active); color: #fff; font-weight: 600; }
.menu a.active:hover { text-decoration: none; }
.icon-box {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  color: currentColor;
}
.icon-box svg { width: 18px; height: 18px; }
.sidebar-pied {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
}
.sidebar-fermer-mobile { display: none; }
.voile-mobile { display: none; }

.main {
  margin-left: var(--sidebar-largeur);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main.no-sidebar { margin-left: 0; }

/* ---------- Barre supérieure ---------- */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.burger { display: none; background: none; border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; cursor: pointer; color: var(--text); }
.topbar-titre { display: flex; align-items: center; gap: 8px; }
.topbar-titre strong { font-size: 15px; }
.bandeau-env {
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px;
  background: var(--warning); color: #fff; letter-spacing: .5px;
}
.bandeau-dev { background: var(--info); }
.bandeau-test { background: var(--warning); }
.bandeau-production { display: none; }
.recherche-globale {
  flex: 1; display: flex; gap: 6px; max-width: 460px; margin-left: auto;
}
.recherche-globale input {
  flex: 1; padding: 7px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px; background: var(--surface-alt);
}
.recherche-globale button {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius); padding: 6px 10px; cursor: pointer; color: var(--text-secondary);
}
.topbar-droite { display: flex; align-items: center; gap: 12px; }
.user { text-align: right; }
.user a { color: var(--text); font-weight: 600; font-size: 14px; }
.user small { display: flex; align-items: center; gap: 4px; justify-content: flex-end; color: var(--text-secondary); }
.icone-petite { width: 13px; height: 13px; }
.btn-deconnexion {
  background: none; border: 1px solid var(--border); border-radius: 6px;
  padding: 7px 10px; cursor: pointer; color: var(--text-secondary);
}
.btn-deconnexion:hover { color: var(--danger); border-color: var(--danger); }
.btn-deconnexion svg { width: 16px; height: 16px; }

/* ---------- Contenu ---------- */
.content { padding: 24px; flex: 1; }
.page-header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.page-header h1 { margin: 0; }
.page-header .actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .12s, border-color .12s;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--action); color: var(--action-contraste); }
.btn-primary:hover { background: var(--action-hover); text-decoration: none; }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-alt); text-decoration: none; }
.btn-danger { background: var(--surface); color: var(--danger); border-color: #FECACA; }
.btn-danger:hover { background: #FEF2F2; text-decoration: none; }
.btn-discret { background: transparent; color: var(--text-secondary); }
.btn-discret:hover { background: var(--surface-alt); text-decoration: none; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #15803D; text-decoration: none; }
.btn-sm { padding: 5px 10px; font-size: 13px; }

/* ---------- Cartes ---------- */
.carte {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-grand);
  padding: 18px;
  box-shadow: var(--shadow);
}
.grille-cartes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.carte-titre {
  font-size: 13px; text-transform: uppercase; letter-spacing: .4px;
  color: var(--text-secondary); margin-bottom: 8px; font-weight: 600;
}
.carte-valeur { font-size: 26px; font-weight: 700; }
.carte-sous { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ---------- Tableaux ---------- */
.tableau-conteneur { overflow-x: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-grand); }
table.tableau {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.tableau thead th {
  background: var(--surface-alt);
  text-align: left;
  padding: 10px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text-secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
table.tableau tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
table.tableau tbody tr:hover { background: var(--surface-alt); }
table.tableau tbody tr:last-child td { border-bottom: none; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600;
  padding: 3px 9px; border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--surface);
}
.badge-succes { color: var(--success); border-color: #BBF7D0; background: #F0FDF4; }
.badge-avertissement { color: var(--warning); border-color: #FDE68A; background: #FFFBEB; }
.badge-erreur { color: var(--danger); border-color: #FECACA; background: #FEF2F2; }
.badge-info { color: var(--info); border-color: #BFDBFE; background: #EFF6FF; }
.badge-statut-ouverte { background: var(--surface-alt); }
.badge-statut-en_preparation { color: var(--info); border-color: #BFDBFE; background: #EFF6FF; }
.badge-statut-proposee { color: var(--warning); border-color: #FDE68A; background: #FFFBEB; }
.badge-statut-validee { color: var(--success); border-color: #BBF7D0; background: #F0FDF4; }
.badge-statut-terminee { color: var(--text); background: var(--surface-alt); }
.badge-statut-annulee { color: var(--danger); border-color: #FECACA; background: #FEF2F2; }

/* ---------- Alertes ---------- */
.messages { margin-bottom: 16px; }
.alert {
  padding: 12px 16px; border-radius: var(--radius);
  margin-bottom: 8px; font-size: 14px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.alert-success { color: var(--success); border-color: #BBF7D0; background: #F0FDF4; }
.alert-danger { color: var(--danger); border-color: #FECACA; background: #FEF2F2; }
.alert-info { color: var(--info); border-color: #BFDBFE; background: #EFF6FF; }
.alert-warning { color: var(--warning); border-color: #FDE68A; background: #FFFBEB; }

/* ---------- Formulaires ---------- */
.formulaire label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin: 12px 0 4px; }
.formulaire input[type=text], .formulaire input[type=email], .formulaire input[type=password],
.formulaire input[type=number], .formulaire input[type=date], .formulaire input[type=time],
.formulaire input[type=tel], .formulaire select, .formulaire textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
}
.formulaire input:focus, .formulaire select:focus, .formulaire textarea:focus {
  outline: 2px solid var(--action); outline-offset: 1px; border-color: var(--action);
}
.formulaire textarea { resize: vertical; }
.groupe-form { margin-bottom: 4px; }
.groupe-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.erreur-champ { color: var(--danger); font-size: 13px; margin-top: 3px; }
.grille-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
}
.grille-form .pleine { grid-column: 1 / -1; }
.aide-champ { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ---------- Tournée (liste + carte) ---------- */
.tournee-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.liste-etapes { display: flex; flex-direction: column; gap: 8px; }
.etape {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: grab;
  transition: box-shadow .12s, border-color .12s;
  user-select: none;
}
.etape:hover { border-color: var(--action); box-shadow: var(--shadow-grand); }
.etape.drag-sur { border-color: var(--info); box-shadow: var(--shadow-grand); }
.etape.selectionnee { border-color: var(--action); box-shadow: 0 0 0 2px rgba(226,175,75,.3); }
.etape-en-tete { display: flex; align-items: center; gap: 10px; }
.etape-ordre, .etape-heure {
  font-weight: 700; font-size: 15px; min-width: 34px;
}
.etape-heure { color: var(--action); }
.etape-nom { font-weight: 600; flex: 1; }
.etape-adresses { margin-top: 6px; font-size: 13px; color: var(--text-secondary); display: flex; gap: 8px; flex-wrap: wrap; }
.etape-adresses span { display: flex; align-items: center; gap: 4px; }
.etape-actions { display: flex; gap: 4px; margin-top: 8px; align-items: center; flex-wrap: wrap; }
.etape-actions .btn { padding: 4px 8px; font-size: 12px; }
.etape-actions .btn svg { width: 14px; height: 14px; }
.carte-tournee {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-grand);
  padding: 0; overflow: hidden; position: sticky; top: 76px;
}
#carte-tad { width: 100%; height: 480px; }
.duree-form { font-size: 12px; color: var(--text-secondary); }

/* ---------- Indicateurs ---------- */
.jauge {
  position: relative;
  height: 8px;
  background: var(--surface-alt);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 6px;
}
.jauge-remplissage { height: 100%; background: var(--success); border-radius: 20px; }
.jauge-remplissage.avertissement { background: var(--warning); }
.jauge-remplissage.erreur { background: var(--danger); }
.places { font-size: 14px; font-weight: 600; }

/* ---------- Auth ---------- */
.auth-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: var(--background); padding: 20px;
}
.auth-carte {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-grand);
}
.auth-carte .logo { width: 100%; max-width: 260px; display: block; margin: 0 auto 8px; }
.auth-titre { text-align: center; font-size: 18px; margin-bottom: 20px; color: var(--text); }

/* ---------- Agenda ---------- */
.grille-mois {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cellule-mois {
  min-height: 92px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px; font-size: 13px;
}
.cellule-mois.vide { background: transparent; border-color: transparent; }
.cellule-mois.aujourdhui { border-color: var(--action); }
.cellule-mois .num { font-weight: 600; }
.cellule-mois .tad-pastille {
  margin-top: 4px; font-size: 11px; padding: 2px 4px; border-radius: 4px;
  background: var(--action); color: var(--action-contraste); display: inline-block;
}
.jour-semaine-titre { font-weight: 600; font-size: 12px; color: var(--text-secondary); text-align: center; padding: 6px; text-transform: uppercase; }

/* ---------- Impression ---------- */
@media print {
  .sidebar, .topbar, .no-print, .footer-actions, .carte-tournee { display: none !important; }
  body { background: #fff; }
  .main { margin-left: 0 !important; }
  .content { padding: 0; }
}

/* ---------- Responsive ---------- */
/* Tablette */
@media (max-width: 1199px) and (min-width: 768px) {
  :root { --sidebar-largeur: 220px; }
  .recherche-globale { max-width: 280px; }
}

/* Smartphone et petit */
@media (max-width: 767px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform .22s ease;
    width: 82%; max-width: 320px;
  }
  body.sidebar-ouverte .sidebar { transform: translateX(0); }
  .voile-mobile {
    display: block;
    position: fixed; inset: 0;
    background: rgba(15,23,42,.5);
    opacity: 0; pointer-events: none;
    transition: opacity .2s;
    z-index: 55;
  }
  body.sidebar-ouverte .voile-mobile { opacity: 1; pointer-events: auto; }
  .sidebar-fermer-mobile {
    display: block; position: absolute; top: 14px; right: 14px;
    cursor: pointer; color: rgba(255,255,255,.8);
  }
  .main { margin-left: 0; }
  .topbar { padding: 8px 12px; gap: 8px; }
  .burger { display: inline-flex; }
  .recherche-globale { display: none; }
  .user small { display: none; }
  .content { padding: 14px; }
  h1 { font-size: 21px; }
  .page-header { flex-direction: column; align-items: stretch; }
  .page-header .actions .btn { flex: 1; justify-content: center; }
  .grille-form { grid-template-columns: 1fr; }
  .tournee-layout { grid-template-columns: 1fr; }
  .carte-tournee { position: static; }
  #carte-tad { height: 300px; }
  .grille-mois { grid-template-columns: repeat(2, 1fr); }
  .cellule-mois { min-height: 70px; }

  /* Tableaux -> cartes compactes */
  .tableau-conteneur { border: none; background: transparent; }
  table.tableau thead { display: none; }
  table.tableau, table.tableau tbody { display: block; width: 100%; }
  table.tableau tbody tr {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-grand);
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
  }
  table.tableau tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 4px 0;
    font-size: 14px;
  }
  table.tableau tbody td::before {
    content: attr(data-label);
    font-weight: 600; font-size: 12px; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: .2px;
    flex-shrink: 0;
  }
  /* Tableaux sans data-label : afficher simplement le contenu */
  table.tableau tbody td:not([data-label])::before { content: none; }
  .actions-mobile { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
  .btn { min-height: 42px; }
}

/* ---------- Utilitaires ---------- */
.texte-secondaire { color: var(--text-secondary); }
.texte-brand { color: var(--action); }
.flex { display: flex; }
.entre { justify-content: space-between; }
.aligner-centre { align-items: center; }
.gap { gap: 10px; }
.mt { margin-top: 18px; }
.mb { margin-bottom: 18px; }
.droite { text-align: right; }
.com-pacte { font-size: 13px; }
.footer-actions { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.echelonnement { min-height: 24px; }
.fichier-upload { padding: 16px; border: 2px dashed var(--border-strong); border-radius: var(--radius); text-align: center; color: var(--text-secondary); }

/* ============================================================
   Aide et documentation
   ============================================================ */
.aide-disposition {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 1240px;
}

/* --- Sommaire (colonne gauche) --- */
.aide-sommaire {
  position: sticky;
  top: 14px;
  flex: 0 0 252px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-grand);
  box-shadow: var(--shadow);
  padding: 12px;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
}
.aide-sommaire-titre {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-secondary);
  padding: 2px 8px 10px;
  border-bottom: 1px solid var(--border);
}
.aide-groupe {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin: 14px 0 4px;
  padding: 0 8px;
}
.aide-groupe:first-of-type { margin-top: 6px; }
.aide-sommaire nav a {
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.35;
  text-decoration: none;
}
.aide-sommaire nav a:hover { background: var(--surface-alt); }
.aide-sommaire nav a.actif {
  background: var(--surface-alt);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--action);
}
.aide-retour-haut {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
}
.aide-retour-haut:hover { color: var(--action); }

/* --- Contenu (colonne droite) --- */
.aide-contenu { flex: 1; min-width: 0; }
.section-aide {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-grand);
  box-shadow: var(--shadow);
  padding: 20px 24px 22px;
  margin-bottom: 18px;
  scroll-margin-top: 14px;
}
.section-aide h2 {
  font-size: 19px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--action);
}
.section-aide h3 { font-size: 15.5px; margin: 20px 0 8px; }
.section-aide p { margin: 8px 0; }
.section-aide ul, .section-aide ol { margin: 8px 0; padding-left: 22px; }
.section-aide li { margin-bottom: 5px; }
.section-aide table.tableau { margin-top: 6px; }
.etapes-aide li { margin-bottom: 9px; }
.note-aide {
  background: var(--surface-alt);
  border-left: 3px solid var(--action);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px;
  margin: 14px 0;
  font-size: 13.5px;
}

/* --- Responsive : le sommaire passe au-dessus du contenu --- */
@media (max-width: 980px) {
  .aide-disposition { flex-direction: column; }
  .aide-sommaire {
    position: static;
    flex: none;
    width: 100%;
    max-height: none;
  }
  .aide-groupe { display: none; }
  .aide-sommaire nav a {
    display: inline-block;
    margin: 3px;
    background: var(--surface-alt);
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 12.5px;
  }
  .aide-sommaire nav a.actif { box-shadow: none; background: var(--action); color: var(--action-contraste); }
  .aide-retour-haut { display: none; }
}

/* ============================================================
   Formulaire lieu : recherche guidée + carte
   ============================================================ */
.recherche-lieu-bloc { margin-bottom: 4px; }
.recherche-lieu-bloc > label { font-weight: 600; display: block; margin-bottom: 4px; }
.recherche-lieu { position: relative; }
.recherche-lieu input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font: inherit;
  background: var(--surface);
}
.recherche-lieu input:focus { outline: 2px solid var(--action); outline-offset: 1px; }
.liste-resultats {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-grand);
  max-height: 280px;
  overflow-y: auto;
  z-index: 1200;
}
.resultat-lieu {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 9px 12px;
  cursor: pointer;
  font: inherit;
  color: var(--text);
}
.resultat-lieu:last-child { border-bottom: none; }
.resultat-lieu:hover { background: var(--surface-alt); }
.resultat-lieu small { display: block; color: var(--text-secondary); font-size: 12px; }
.resultat-lieu.vide { cursor: default; color: var(--text-muted); text-align: center; }
.carte-lieu {
  height: 300px;
  border-radius: var(--radius-grand);
  border: 1px solid var(--border);
  margin-top: 8px;
  background: var(--surface-alt);
}
.coord-lue {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 6px;
}
