:root {
  --bg: #0a0f1a;
  --bg-soft: #121929;
  --panel: #1a2232;
  --panel-2: #242d3f;
  --border: #2b3750;
  --fg: #e9ecf3;
  --fg-dim: #9aa3b8;
  --accent: #4cc2ff;
  --ok:   #34d17a;
  --warn: #f2c744;
  --bad:  #ff5c5c;
  --na:   #6a7487;
  --pop-shadow: 0 10px 30px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bot: env(safe-area-inset-bottom, 0px);
  --radius: 14px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

body {
  position: relative;
  height: 100dvh;
  height: 100vh;              /* iOS < 15 fallback */
}

/* ---- Top bar ---------------------------------------------------------- */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  padding: calc(var(--safe-top) + 10px) 14px 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;   /* left gutter · centered pill · right gutter */
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
#topbar > * { pointer-events: auto; }
#topbar .updated { grid-column: 2; justify-self: center; }
#topbar #menu-btn { grid-column: 3; justify-self: end; }

#menu-btn {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,34,50,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s, border-color .2s;
}
#menu-btn:hover { background: var(--panel-2); border-color: var(--accent); }
#menu-btn .burger {
  display: grid; gap: 4px;
  width: 18px;
}
#menu-btn .burger span {
  display: block; height: 2px; background: var(--fg); border-radius: 2px;
  transition: transform .2s;
}
#menu-btn[aria-expanded="true"] .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#menu-btn[aria-expanded="true"] .burger span:nth-child(2) { opacity: 0; }
#menu-btn[aria-expanded="true"] .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
#menu-btn .menu-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: #08121f;
  font: 700 10px/18px var(--mono);
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--bg);
  pointer-events: none;
}

.updated {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--fg-dim);
  background: rgba(26,34,50,.75);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.updated .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(52,209,122,.75);
  animation: pulse 2s infinite;
}
.updated.stale .pulse { background: var(--warn); animation: none; }
.updated.error .pulse { background: var(--bad); animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,209,122,.65); }
  70%  { box-shadow: 0 0 0 10px rgba(52,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,209,122,0); }
}

/* ---- Map -------------------------------------------------------------- */
#map {
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
}
.leaflet-container {
  font-family: var(--font);
  background: #0c1220;
  outline: none;
}
/* Subtle inversion + hue-shift so OSM tiles match dark theme */
.leaflet-tile-pane {
  filter: invert(1) hue-rotate(190deg) brightness(.96) saturate(.9) contrast(.95);
}
.leaflet-control-attribution {
  background: rgba(10,15,26,.72) !important;
  color: var(--fg-dim) !important;
  font-size: 10px !important;
  border-top-left-radius: 8px;
}
.leaflet-control-attribution a { color: var(--accent) !important; }
.leaflet-control-zoom a {
  background: var(--panel) !important;
  color: var(--fg) !important;
  border-color: var(--border) !important;
}
.leaflet-control-zoom a:hover { background: var(--panel-2) !important; }

/* ---- Promo strip ------------------------------------------------------ */
.promo-strip {
  position: fixed;
  left: 50%;
  top: calc(var(--safe-top) + 56px);
  transform: translateX(-50%);
  z-index: 605;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  max-width: calc(100vw - 24px);
  background: linear-gradient(90deg, rgba(52,209,122,.18), rgba(76,194,255,.18));
  border: 1px solid rgba(52,209,122,.45);
  border-radius: 999px;
  color: var(--fg);
  font: 600 12px/1.2 var(--font);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  animation: promo-pop .35s ease-out;
}
@keyframes promo-pop { from { opacity: 0; transform: translate(-50%, -6px); } to { opacity: 1; transform: translate(-50%, 0); } }
.promo-strip[hidden] { display: none; }

.promo-strip .dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex: 0 0 10px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.10), 0 0 10px currentColor;
}
.promo-strip .bolt { flex: 0 0 auto; color: #f2c744; filter: drop-shadow(0 0 4px rgba(242,199,68,.6)); }
.promo-strip .title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.promo-strip .sub {
  flex: 0 0 auto;
  color: var(--fg-dim);
  font-weight: 500;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.promo-strip .close {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: transparent; border: 0;
  color: var(--fg-dim);
  border-radius: 50%;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.promo-strip .close:hover { color: var(--fg); background: rgba(255,255,255,.06); }

@media (max-width: 480px) {
  .promo-strip .sub { display: none; }
}

/* ---- Fuel tabs -------------------------------------------------------- */
#fueltabs {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--safe-bot) + 14px);
  z-index: 600;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(18,25,41,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  max-width: calc(100vw - 24px);
  overflow-x: auto;
  scrollbar-width: none;
}
#fueltabs::-webkit-scrollbar { display: none; }
#fueltabs button {
  flex: 0 0 auto;
  min-width: 46px;
  padding: 9px 12px;
  background: transparent;
  color: var(--fg-dim);
  border: none;
  border-radius: 999px;
  font: 600 14px/1 var(--font);
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
#fueltabs button:hover { color: var(--fg); }
#fueltabs button.is-active {
  background: var(--accent);
  color: #08121f;
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 4px 14px rgba(76,194,255,.35);
}

/* ---- Legend ----------------------------------------------------------- */
#legend {
  position: fixed;
  left: 14px;
  bottom: calc(var(--safe-bot) + 72px);
  z-index: 599;
  pointer-events: none;
  font-size: 11px;
  color: var(--fg-dim);
  background: rgba(18,25,41,.7);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.legend-row { display: flex; align-items: center; gap: 6px; }
.chip { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.chip.cheap  { background: var(--ok); }
.chip.mid    { background: var(--warn); }
.chip.pricey { background: var(--bad); }

/* ---- Marker (divIcon) ------------------------------------------------- */
.mk {
  --mk-size: 34px;
  --mk-color: var(--na);
  --mk-ring: #000;
  width: var(--mk-size);
  height: var(--mk-size);
  margin-left: calc(var(--mk-size) / -2);
  margin-top: calc(var(--mk-size) / -2);
  border-radius: 50%;
  background: var(--mk-color);
  color: #08121f;
  display: grid;
  place-items: center;
  font: 700 11px/1 var(--mono);
  letter-spacing: 0;
  border: 2px solid #08121f;
  box-shadow:
    0 0 0 2px var(--mk-ring),
    0 4px 10px rgba(0,0,0,.45);
  transition: transform .18s ease-out, background .25s, box-shadow .25s;
  cursor: pointer;
  user-select: none;
}
.mk:hover, .mk.is-open {
  transform: scale(1.18);
  z-index: 500;
}

/* Cheapest-in-city marker: soft green halo that pulses */
.mk.is-cheapest {
  z-index: 450;
  animation: mk-cheapest-pulse 1.9s ease-in-out infinite;
}
@keyframes mk-cheapest-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px var(--mk-ring),
      0 0 0 0 rgba(52,209,122,.75),
      0 4px 10px rgba(0,0,0,.45);
  }
  50% {
    box-shadow:
      0 0 0 2px var(--mk-ring),
      0 0 0 14px rgba(52,209,122,0),
      0 4px 10px rgba(0,0,0,.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mk.is-cheapest { animation: none; }
  .mk.is-cheapest { box-shadow:
      0 0 0 2px var(--mk-ring),
      0 0 0 6px rgba(52,209,122,.55),
      0 4px 10px rgba(0,0,0,.45); }
}
.mk.na {
  background: var(--na);
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.mk.na::after { content: "—"; }
.mk .price { pointer-events: none; }

/* ---- Marker cluster --------------------------------------------------- */
.marker-cluster {
  display: grid;
  place-items: center;
  background: rgba(18,25,41,.85);
  border: 2px solid var(--accent);
  color: var(--fg);
  font: 700 12px/1 var(--mono);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 0 4px rgba(76,194,255,.18), 0 4px 12px rgba(0,0,0,.5);
  transition: transform .15s ease-out;
}
.marker-cluster div { width: 100%; height: 100%; display: grid; place-items: center; background: transparent; margin: 0; }
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background: rgba(18,25,41,.85);
  border-color: var(--accent);
}
.marker-cluster-small  { width: 36px; height: 36px; border-radius: 50%; }
.marker-cluster-medium { width: 44px; height: 44px; border-radius: 50%; border-color: #ffb600; box-shadow: 0 0 0 4px rgba(255,182,0,.18), 0 4px 12px rgba(0,0,0,.5); }
.marker-cluster-large  { width: 52px; height: 52px; border-radius: 50%; border-color: #ff5c5c; box-shadow: 0 0 0 4px rgba(255,92,92,.18), 0 4px 12px rgba(0,0,0,.5); }
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div { background: transparent; }
.marker-cluster:hover { transform: scale(1.08); }

/* Cluster containing the current cheapest-price station — green pulse */
.marker-cluster.has-cheapest {
  border-color: var(--ok);
  animation: cluster-cheapest-pulse 1.9s ease-in-out infinite;
}
@keyframes cluster-cheapest-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,209,122,.22), 0 0 0 0 rgba(52,209,122,.55), 0 4px 12px rgba(0,0,0,.5); }
  50%      { box-shadow: 0 0 0 4px rgba(52,209,122,.22), 0 0 0 16px rgba(52,209,122,0),  0 4px 12px rgba(0,0,0,.5); }
}
@media (prefers-reduced-motion: reduce) {
  .marker-cluster.has-cheapest { animation: none; }
}

/* ---- Popup (custom) --------------------------------------------------- */
.leaflet-popup-content-wrapper {
  background: var(--panel);
  color: var(--fg);
  border-radius: var(--radius);
  box-shadow: var(--pop-shadow);
  padding: 0;
  border: 1px solid var(--border);
}
.leaflet-popup-tip { background: var(--panel); box-shadow: none; }
.leaflet-popup-content { margin: 0; width: 240px !important; }
.leaflet-popup-close-button {
  color: var(--fg-dim) !important;
  padding: 8px 10px !important;
  font-size: 20px !important;
}

.pop { padding: 12px 14px 10px; font-family: var(--font); }
.pop-head {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 10px;
}
.pop-chain {
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.pop-chain::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--chain-color, var(--accent));
  box-shadow: 0 0 0 2px rgba(255,255,255,.08);
}
.pop-addr { font-size: 12px; color: var(--fg-dim); }

.pop-prices {
  list-style: none; padding: 0; margin: 0;
  background: #0b111e;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--mono);
  overflow: hidden;
}
.pop-prices li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pop-prices li:last-child { border-bottom: 0; }
.pop-prices li.is-active {
  background: linear-gradient(90deg, rgba(76,194,255,.10), transparent);
  box-shadow: inset 3px 0 0 var(--accent);
}
.pop-prices .k { color: var(--fg-dim); font-size: 12px; letter-spacing: .08em; }
.pop-prices .v { color: var(--fg); font-size: 15px; font-weight: 700; }
.pop-prices .v.na { color: var(--na); font-weight: 400; }
.pop-prices .v.cheap  { color: var(--ok); }
.pop-prices .v.pricey { color: var(--bad); }
.pop-prices .v .was {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--fg-dim);
  text-decoration: line-through;
  font-family: var(--mono);
  margin-top: 2px;
}

.pop-promo {
  display: flex; align-items: center; gap: 6px;
  margin: 8px 0 0;
  padding: 6px 10px;
  background: linear-gradient(90deg, rgba(52,209,122,.14), rgba(242,199,68,.12));
  border: 1px solid rgba(242,199,68,.4);
  border-radius: 8px;
  font-size: 12px; color: var(--fg);
}
.pop-promo.off {
  background: rgba(255,255,255,.03);
  border-color: var(--border);
}
.pop-promo .bolt { color: #f2c744; }
.pop-promo .txt { flex: 1 1 auto; }
.pop-promo a { color: var(--accent); text-decoration: none; font-weight: 600; }

.pop-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.pop-actions a {
  flex: 1 1 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #0b111e;
  border: 1px solid var(--border);
  color: var(--fg);
  font: 600 12px/1 var(--font);
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .12s, background .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.pop-actions a:hover { background: var(--panel-2); border-color: var(--accent); }
.pop-actions a:active { transform: scale(.97); }
.pop-actions a svg { width: 14px; height: 14px; flex: 0 0 14px; }
.pop-actions a.waze   { color: #33ccff; }
.pop-actions a.gmaps  { color: #66d17a; }
.pop-actions a.apple  { color: #cfd3dc; }

.pop-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; font-size: 10px; color: var(--fg-dim);
}

/* ---- Chain filter sheet ---------------------------------------------- */
.sheet {
  position: fixed; inset: 0;
  z-index: 800;
  display: flex; align-items: flex-end; justify-content: center;
}
.sheet[hidden] { display: none; }
.sheet-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,9,18,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: sheet-fade .25s ease-out;
}
@keyframes sheet-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheet-slide { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.sheet-body {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 82dvh;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 40px rgba(0,0,0,.55);
  animation: sheet-slide .25s ease-out;
  padding-bottom: var(--safe-bot);
}
@media (min-width: 720px) {
  .sheet { align-items: center; }
  .sheet-body { border-radius: 18px; }
}

.sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.sheet-head h2 { margin: 0; font-size: 16px; letter-spacing: .01em; }
.sheet-actions { display: flex; gap: 4px; align-items: center; }
.sheet-actions button {
  background: transparent; border: 1px solid var(--border); color: var(--fg-dim);
  font: 600 11px/1 var(--font); letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sheet-actions button:hover { color: var(--fg); border-color: var(--accent); }
.sheet-actions .close {
  font-size: 22px; line-height: 1; padding: 0 10px;
  border: 0; color: var(--fg-dim);
}

.sheet-scroll {
  overflow-y: auto; overscroll-behavior: contain;
  padding: 8px 6px 14px;
}
.sheet-section + .sheet-section { margin-top: 10px; border-top: 1px solid var(--border); padding-top: 8px; }
.sheet-section-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 12px 4px;
}
.sheet-section-head h3 {
  margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 700;
}
.sheet-toggle {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 2px 12px;
  padding: 10px 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sheet-toggle .name { font-weight: 600; font-size: 14px; }
.sheet-toggle .sub  { grid-column: 1 / 2; font-size: 11px; color: var(--fg-dim); }
.sheet-toggle input {
  appearance: none; -webkit-appearance: none;
  width: 38px; height: 22px;
  border-radius: 999px;
  background: #2b3750;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  flex: 0 0 38px;
  grid-row: 1 / 3; grid-column: 2 / 3;
}
.sheet-toggle input::before {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e6edf8;
  transition: left .18s;
}
.sheet-toggle input:checked { background: var(--accent); }
.sheet-toggle input:checked::before { left: 18px; }

#loyalty-list,
#chain-list {
  list-style: none; padding: 6px; margin: 0;
  display: grid; gap: 2px;
}
#loyalty-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; font-size: 12px; color: var(--fg-dim);
}
#loyalty-list li .dot {
  width: 10px; height: 10px; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.06);
}
#loyalty-list li .card { flex: 1 1 auto; color: var(--fg); font-weight: 600; font-size: 13px; }
#loyalty-list li .amount { font-family: var(--mono); color: var(--ok); }
#loyalty-list li .amount.none { color: var(--na); }
#chain-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s;
}
#chain-list li:hover { background: rgba(255,255,255,.04); }
#chain-list li .dot {
  width: 14px; height: 14px; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.06);
  flex: 0 0 14px;
}
#chain-list li .name { flex: 1 1 auto; font-weight: 600; font-size: 14px; }
#chain-list li .count {
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-dim);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
#chain-list li input {
  appearance: none; -webkit-appearance: none;
  width: 38px; height: 22px;
  border-radius: 999px;
  background: #2b3750;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  flex: 0 0 38px;
}
#chain-list li input::before {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e6edf8;
  transition: left .18s;
}
#chain-list li input:checked { background: var(--accent); }
#chain-list li input:checked::before { left: 18px; }
#chain-list li.off .name,
#chain-list li.off .count { opacity: .45; }

.sheet-footer {
  padding: 14px 16px calc(10px + var(--safe-bot));
  border-top: 1px solid var(--border);
  margin-top: 10px;
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
}
.sheet-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}
.sheet-footer a:hover { text-decoration: underline; }

/* ---- Toast ------------------------------------------------------------ */
#toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--safe-bot) + 72px);
  transform: translateX(-50%) translateY(20px);
  z-index: 700;
  background: var(--panel);
  color: var(--fg);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- Small tweaks for wider screens ---------------------------------- */
@media (min-width: 720px) {
  #fueltabs button { min-width: 56px; padding: 10px 16px; font-size: 15px; }
  .leaflet-popup-content { width: 280px !important; }
}
