
#reunion-map-wrap * { box-sizing: border-box; font-family: 'Manrope', sans-serif; }
  #reunion-map-wrap {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,31,56,0.10);
    padding: 20px 20px 16px;
  }
  #reunion-map-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a1f38;
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
  }
  #reunion-filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .rmap-filter-btn {
    padding: 7px 20px;
    border-radius: 6px;
    border: 2px solid #0a1f38;
    background: #fff;
    color: #0a1f38;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    outline: none;
  }
  .rmap-filter-btn.active {
    background: #0a1f38;
    color: #fff;
    border-color: #0a1f38;
  }
  .rmap-filter-btn:hover:not(.active) {
    background: #f0f3f7;
  }
  #reunion-map {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    #reunion-map { height: 380px; }
    #reunion-map-title { font-size: 1rem; }
  }
  #reunion-legend {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 6px;
  }
  .rmap-legend-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0a1f38;
    white-space: nowrap;
  }
  .rmap-legend-scale {
    display: flex;
    flex: 1;
    min-width: 200px;
    border-radius: 4px;
    overflow: hidden;
    height: 18px;
  }
  .rmap-legend-seg {
    flex: 1;
    height: 18px;
    position: relative;
  }
  .rmap-legend-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
    padding: 0 0;
  }
  .rmap-legend-tick {
    font-size: 0.65rem;
    color: #555;
    font-weight: 600;
  }
  #reunion-tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(10,31,56,0.93);
    color: #fff;
    padding: 8px 13px;
    border-radius: 7px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 99999;
    display: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    max-width: 220px;
    line-height: 1.5;
  }
  .rmap-popup-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a1f38;
    margin-bottom: 8px;
  }
  .rmap-popup-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #222;
    margin-bottom: 4px;
    gap: 10px;
  }
  .rmap-popup-row span:first-child { color: #555; font-weight: 600; }
  .rmap-popup-row span:last-child { font-weight: 700; color: #0a1f38; }
  .rmap-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 4px;
  }
  .rmap-badge-hausse { background: #e8f5e9; color: #2e7d32; }
  .rmap-badge-baisse { background: #ffebee; color: #c62828; }
  .rmap-badge-stable { background: #fff9c4; color: #f57f17; }
  .rmap-popup-btns {
    display: flex;
    gap: 7px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  .rmap-btn {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s;
  }
  .rmap-btn-primary {
    background: #0a1f38;
    color: #fff !important;
    border: none;
  }
  .rmap-btn-secondary {
    background: #C9A84C;
    color: #fff !important;
    border: none;
  }
  .rmap-btn:hover { opacity: 0.85; }
  .leaflet-popup-content { margin: 14px 16px; min-width: 210px; }
  .leaflet-popup-content-wrapper { border-radius: 10px !important; }
