/* Vue d'ensemble — palette locale (marine/orange, cf. style.css racine).
   Couleurs par module : convention INTRODUITE ici (aucune préexistante). */
:root {
  --vo-bg: #0c1329; --vo-panel: #141b36; --vo-fg: #e8ebf5;
  --vo-muted: #93a9c8; --vo-border: rgba(255,255,255,.10);
  --vo-accent: #F08C00;
  --mod-telecom: #339af0; --mod-electrique: #fcc419;
  --mod-construction: #f76707; --mod-mines: #e03131; --mod-vrd: #37b24c;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body { background: var(--vo-bg); color: var(--vo-fg);
  font: 14px/1.45 system-ui, Segoe UI, sans-serif; display: flex;
  flex-direction: column; }
.topbar { display: flex; align-items: center; gap: 14px;
  padding: 10px 16px; background: var(--vo-panel);
  border-bottom: 1px solid var(--vo-border); }
.topbar-title { font-weight: 600; }
.topbar-title .suffix { color: var(--vo-muted); font-weight: 400; }
.topbar-spacer { flex: 1; }
.topbar-link { color: var(--vo-fg); text-decoration: none; padding: 6px 10px;
  border: 1px solid var(--vo-border); border-radius: 8px; }
.topbar-link:hover { border-color: var(--vo-accent); color: var(--vo-accent); }
#layout { flex: 1; display: flex; min-height: 0; position: relative; }
#map { flex: 1; background: #0a0f22; }
.panel { width: 250px; background: var(--vo-panel); padding: 14px;
  overflow-y: auto; border-right: 1px solid var(--vo-border); }
.panel-block { margin-bottom: 16px; }
.panel-label { font-size: 12px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--vo-muted); margin-bottom: 6px; }
.panel-label .hint { text-transform: none; letter-spacing: 0; }
.panel-count { color: var(--vo-muted); font-size: 12px; }
.mod-filter { display: flex; align-items: center; gap: 8px;
  padding: 4px 0; cursor: pointer; }
.mod-dot { width: 10px; height: 10px; border-radius: 50%; }
#company-filter, #search-input { width: 100%; padding: 6px 8px;
  background: var(--vo-bg); color: var(--vo-fg);
  border: 1px solid var(--vo-border); border-radius: 6px; }
.fiche { position: absolute; right: 0; top: 0; bottom: 0; width: 290px;
  border-right: 0; border-left: 1px solid var(--vo-border); z-index: 1000; }
.fiche-close { position: absolute; top: 8px; right: 10px; background: none;
  border: 0; color: var(--vo-muted); font-size: 20px; cursor: pointer; }
.fiche-name { font-size: 17px; font-weight: 600; margin: 4px 0 8px; }
.fiche-badge { display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 12px; color: #10142b; font-weight: 600; margin-bottom: 12px; }
.fiche-rows dt { color: var(--vo-muted); font-size: 12px; margin-top: 8px; }
.fiche-rows dd { margin: 0; }
.fiche-open { display: block; margin-top: 16px; text-align: center;
  padding: 8px; background: var(--vo-accent); color: #10142b;
  border-radius: 8px; text-decoration: none; font-weight: 600; }
.denied { margin: 40px auto; max-width: 420px; padding: 24px;
  background: var(--vo-panel); border: 1px solid var(--vo-border);
  border-radius: 12px; text-align: center; }
.vo-marker { width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 1px 6px rgba(0,0,0,.5); }
.leaflet-container { font: inherit; }
