/* ── Light Theme ────────────────────────────────────────────────────────── */
body.light-theme {
  --bg-app:        #f0f0f8;
  --bg-header:     #ffffff;
  --bg-card:       #ffffff;
  --bg-card-inner: #f7f7fc;
  --bg-pill:       #f0f0f8;
  --bg-pill-hover: #e2e2f0;

  --border:        #e0e0ec;
  --border-light:  rgba(0,0,0,0.07);

  --text-primary:  #111122;
  --text-secondary:#666680;
  --text-header:   #111122;

  --shadow-card:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-float:  0 8px 32px rgba(0,0,0,0.12);

  background: var(--bg-app);
  color: var(--text-primary);
}

body.light-theme .leaflet-container {
  background: #e8e8f0;
}

body.light-theme .leaflet-control-attribution {
  background: rgba(255,255,255,0.8);
  color: #666;
}