/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
  --header-h:   58px;
  --banner-h:   38px;
  --sidebar-w:  330px;

  /* Colour palette — navy/midnight + electric cyan */
  --bg:           #070f1e;
  --surface:      #0d1c38;
  --surface2:     #132948;
  --surface3:     #1a3560;
  --border:       #1c3360;
  --border-hi:    rgba(0,212,245,0.22);

  --accent:       #00d4f5;
  --accent-dim:   rgba(0,212,245,0.07);
  --accent-glow:  rgba(0,212,245,0.18);

  --text:         #d6e8ff;
  --text-muted:   #4d7299;
  --text-dim:     #2d4e6e;

  --up:           #f87171;
  --down:         #4ade80;
  --steady:       #475569;

  --cheap:        #4ade80;
  --mid:          #fbbf24;
  --expensive:    #f87171;

  --loc:          #38bdf8;
  --danger:       #f87171;

  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --glow:         0 0 20px var(--accent-glow);
}

/* ── Base ────────────────────────────────────────────────────────────────── */
html, body {
  height: 100%; overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px; line-height: 1.5;
  background: var(--bg); color: var(--text);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  height: var(--header-h);
  display: flex; align-items: center; gap: 16px; padding: 0 18px;
  background: linear-gradient(135deg, #0c2050 0%, #0d1c38 55%, #080f22 100%);
  border-bottom: 1px solid var(--border-hi);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 0 var(--border-hi);
}
.header-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Sidebar toggle ──────────────────────────────────────────────────────── */
.sidebar-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 34px; height: 34px; padding: 6px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.sidebar-toggle:hover { border-color: var(--accent); background: var(--accent-dim); }
.toggle-bar {
  display: block; width: 100%; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: background 0.15s;
}
.sidebar-toggle:hover .toggle-bar { background: var(--accent); }

/* ── Logo ────────────────────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 32px; height: 32px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-size: 17px; font-weight: 800; letter-spacing: 0.06em;
  background: linear-gradient(120deg, #00d4f5 20%, #7dd3fc 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub { font-size: 9px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

/* ── Header centre ───────────────────────────────────────────────────────── */
.header-centre {
  display: flex; align-items: center; gap: 20px;
  flex: 1; min-width: 0;
}

.fuel-selector-header { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; max-width: 320px; }

.field-label {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}

.fuel-select {
  width: 100%;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); padding: 5px 8px; border-radius: var(--radius-sm);
  font-size: 12px; cursor: pointer; transition: border-color 0.15s;
}
.fuel-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-dim); }
.fuel-select option, .fuel-select optgroup { background: var(--surface2); }

/* ── Segmented control ───────────────────────────────────────────────────── */
.seg-control {
  display: flex; background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.seg-btn {
  flex: 1; padding: 5px 10px;
  background: transparent; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 11px; font-weight: 600;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.seg-btn:not(:last-child) { border-right: 1px solid var(--border); }
.seg-btn:hover { background: var(--surface3); color: var(--text); }
.seg-btn.active { background: var(--accent); color: #020c1b; }

.seg-sm .seg-btn { padding: 4px 8px; font-size: 10px; }

/* ── Header right ────────────────────────────────────────────────────────── */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.last-updated-wrap { display: flex; align-items: center; gap: 6px; }
.last-updated-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.last-updated-dot.stale {
  background: var(--danger);
  box-shadow: 0 0 6px rgba(248, 113, 113, 0.85);
}
.last-updated-dot.live {
  background: var(--accent);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.last-updated { font-size: 10px; color: var(--text-muted); white-space: nowrap; }


/* ── Body ────────────────────────────────────────────────────────────────── */
.app-body {
  display: flex;
  height: calc(100vh - var(--header-h));
  margin-top: var(--header-h);
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #0c1f3f 0%, var(--bg) 100%);
  border-right: 1px solid var(--border-hi);
  transition: width 0.25s ease;
  overflow: hidden;
}
.sidebar.collapsed { width: 0; }

.sidebar-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-title-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px;
}
.sidebar-title-row h2 { font-size: 14px; font-weight: 700; color: var(--text); }
.sidebar-count {
  font-size: 10px; color: var(--accent); font-weight: 700; letter-spacing: 0.05em;
}
.sidebar-fuel-tag {
  margin-left: auto;
  font-size: 10px; color: var(--text-muted); white-space: nowrap;
  font-style: italic;
}

.sidebar-controls { display: flex; flex-direction: column; gap: 10px; }
.control-group { display: flex; align-items: center; gap: 8px; }
.control-group .field-label { min-width: 34px; }
.ctrl-select {
  flex: 1;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); padding: 4px 6px; border-radius: var(--radius-sm);
  font-size: 11px; cursor: pointer;
}
.ctrl-select option { background: var(--surface2); }

.sidebar-list { overflow-y: auto; flex: 1; }
.sidebar-list::-webkit-scrollbar { width: 4px; }
.sidebar-list::-webkit-scrollbar-track { background: transparent; }
.sidebar-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.sidebar-hint {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; height: 160px; color: var(--text-muted); font-size: 12px; text-align: center;
  padding: 20px;
}
.sidebar-hint svg { width: 28px; height: 28px; opacity: 0.4; }

/* ── Station cards ───────────────────────────────────────────────────────── */
.station-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 16px;
  border-bottom: 1px solid rgba(28, 51, 96, 0.7);
  cursor: pointer; transition: background 0.1s;
  position: relative;
}
.station-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent; transition: background 0.15s;
}
.station-card:hover { background: var(--accent-dim); }
.station-card:hover::before { background: var(--border-hi); }
.station-card.active { background: var(--accent-dim); }
.station-card.active::before { background: var(--accent); }

.station-rank {
  font-size: 10px; color: var(--text-dim);
  min-width: 20px; text-align: right; flex-shrink: 0; font-variant-numeric: tabular-nums;
}

.station-brand-badge {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; letter-spacing: 0.04em;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.station-info { flex: 1; min-width: 0; }
.station-name { font-weight: 600; font-size: 12px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.station-address { font-size: 10px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.station-dist { font-size: 10px; color: var(--loc); margin-top: 1px; }

.station-price-block { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.station-price { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; }
.station-price.cheap     { color: var(--cheap); }
.station-price.mid       { color: var(--mid); }
.station-price.expensive { color: var(--expensive); }
.station-price.stale { opacity: 0.6; font-style: italic; }
.trend-arrow { font-size: 11px; font-weight: 700; }
.trend-arrow.up     { color: var(--up); }
.trend-arrow.down   { color: var(--down); }
.trend-arrow.steady { color: var(--steady); }

/* ── Map ─────────────────────────────────────────────────────────────────── */
.map-wrap { flex: 1; position: relative; overflow: hidden; }
#map { width: 100%; height: 100%; background: var(--bg); }

/* Leaflet cluster overrides */
.leaflet-cluster-anim .leaflet-marker-icon { transition: transform 0.2s, opacity 0.2s; }
.marker-cluster-small  { background-color: rgba(0,212,245,0.12) !important; }
.marker-cluster-medium { background-color: rgba(0,212,245,0.18) !important; }
.marker-cluster-large  { background-color: rgba(0,212,245,0.24) !important; }
.marker-cluster-small  div,
.marker-cluster-medium div,
.marker-cluster-large  div {
  background-color: rgba(0,212,245,0.55) !important;
  color: #020c1b !important; font-weight: 800 !important; font-size: 11px !important;
}

/* ── Map markers ─────────────────────────────────────────────────────────── */

/* Trend ring colours — applied to both price bubbles and station dots */
.ring-down   { --ring: var(--down); }
.ring-up     { --ring: var(--up); }
.ring-steady { --ring: var(--border); }

/* Price bubble (fuel selected) */
.price-marker {
  display: flex; align-items: center; gap: 4px;
  padding: 3px 8px 3px 4px;
  background: rgba(10, 18, 38, 0.92);
  backdrop-filter: blur(6px);
  border: 2px solid var(--ring, var(--border));
  border-radius: 20px;
  font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums;
  white-space: nowrap; cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 0 1px var(--ring, transparent);
  transition: transform 0.1s, box-shadow 0.1s;
}
.price-marker:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(0,212,245,0.2), 0 0 0 1px var(--ring, transparent); }
.price-marker.cheap  { color: var(--cheap); }
.price-marker.mid    { color: var(--mid); }
.price-marker.expensive { color: var(--expensive); }
.price-marker.stale { opacity: 0.65; font-style: italic; }
.price-marker .m-arrow { font-size: 9px; }
.price-marker .m-arrow.up     { color: var(--up); }
.price-marker .m-arrow.down   { color: var(--down); }
.price-marker .m-arrow.steady { color: var(--steady); }

.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: 1px 5px;
  font-size: 8px; font-weight: 800; letter-spacing: 0.03em; line-height: 1.5;
  flex-shrink: 0;
}

/* Station dot (no fuel selected) */
.station-dot {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  width: 28px; height: 28px;
  border: 2.5px solid var(--ring, var(--border));
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4), 0 0 8px var(--ring, transparent);
  background: rgba(10,18,38,0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: transform 0.1s;
}
.station-dot:hover { transform: scale(1.15); }
.station-dot-badge {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 7px; font-weight: 800; letter-spacing: 0.02em;
}

/* User location marker */
.loc-marker-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--loc); border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(56,189,248,0.35), 0 2px 10px rgba(56,189,248,0.5);
  position: relative;
}
.loc-marker-dot::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(56,189,248,0.3);
  animation: loc-pulse 1.8s ease-out infinite;
}
@keyframes loc-pulse {
  0%   { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Leaflet popup overrides ─────────────────────────────────────────────── */
.leaflet-popup-content-wrapper {
  background: var(--surface) !important;
  color: var(--text) !important;
  border: 1px solid var(--border-hi) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow), var(--glow) !important;
}
.leaflet-popup-tip { background: var(--surface) !important; }
.leaflet-popup-close-button { color: var(--text-muted) !important; top: 10px !important; right: 10px !important; font-size: 18px !important; }
.leaflet-popup-content { margin: 0 !important; width: auto !important; }

/* min() means Leaflet measures the content as narrow on small screens,
   so it never lays out wider than the viewport from the start. */
.popup-content { width: min(420px, calc(100vw - 32px)); padding: 14px 16px 12px; box-sizing: border-box; }

.popup-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.popup-brand-badge {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.popup-name { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.popup-address { font-size: 11px; color: var(--text-muted); }
.popup-dist { font-size: 11px; color: var(--loc); margin-bottom: 8px; }
.popup-no-prices { font-size: 12px; color: var(--text-muted); padding: 4px 0; }

.popup-price-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.popup-price-table tr { transition: background 0.1s; }
.popup-price-table tr + tr td { border-top: 1px solid rgba(28,51,96,0.6); }
.popup-price-table td { padding: 6px 4px; vertical-align: middle; overflow: hidden; }
.popup-row-highlight td { background: rgba(0,212,245,0.06); }
.pt-fuel  { font-size: 11px; color: var(--text-muted); padding-right: 8px; white-space: normal; }
.pt-price { font-size: 14px; font-weight: 800; text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; width: 60px; }
.pt-price.cheap     { color: var(--cheap); }
.pt-price.mid       { color: var(--mid); }
.pt-price.expensive { color: var(--expensive); }
.pt-trend { width: 22px; text-align: center; }
.pt-arrow { font-size: 10px; font-weight: 700; }
.pt-arrow.up     { color: var(--up); }
.pt-arrow.down   { color: var(--down); }
.pt-arrow.steady { color: var(--steady); }
.pt-time  { font-size: 10px; color: var(--text-muted); text-align: right; white-space: normal; padding-left: 8px; vertical-align: top; padding-top: 8px; width: 48px; }
.pt-time.stale { font-style: italic; }
.pt-price.stale { opacity: 0.65; font-style: italic; }
.popup-row-stale td { opacity: 0.7; }
.pt-from  { font-size: 9px; font-weight: 600; letter-spacing: 0.02em; }
.pt-from.up   { color: var(--up); }
.pt-from.down { color: var(--down); }
.pt-chart { padding-left: 6px; vertical-align: middle; width: 96px; max-width: 96px; overflow: hidden; }
.sparkline { display: block; overflow: hidden; max-width: 100%; }
.sparkline-empty { opacity: 0.35; }

.popup-attribution {
  margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--border);
  font-size: 9px; color: var(--text-dim); text-align: right;
}

/* ── Floating location button ────────────────────────────────────────────── */
.map-loc-btn {
  position: absolute;
  bottom: 28px; right: 12px; z-index: 500;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,18,38,0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border-hi); border-radius: 50%;
  color: var(--text-muted); cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.map-loc-btn svg { width: 16px; height: 16px; }
.map-loc-btn:hover { background: var(--surface2); color: var(--accent); border-color: var(--accent); }
.map-loc-btn.active { color: var(--accent); border-color: var(--accent); box-shadow: var(--shadow), 0 0 12px var(--accent-glow); }
.map-loc-btn.locating { color: var(--text-muted); animation: loc-spin 1s linear infinite; }
@keyframes loc-spin { to { transform: rotate(360deg); } }


/* ── Map attribution ─────────────────────────────────────────────────────── */
.map-attribution {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  z-index: 490; font-size: 10px; color: var(--text-dim);
  background: rgba(7,15,30,0.7); padding: 2px 10px; border-radius: 20px;
  pointer-events: auto; white-space: nowrap;
}
.map-attribution a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.map-attribution a:hover { color: var(--accent); }

/* ── Map legend ──────────────────────────────────────────────────────────── */
.map-legend {
  position: absolute; bottom: 28px; left: 12px; z-index: 500;
  background: rgba(10,18,38,0.88); backdrop-filter: blur(8px);
  border: 1px solid var(--border-hi); border-radius: var(--radius);
  padding: 10px 14px; display: flex; flex-direction: column; gap: 5px;
  box-shadow: var(--shadow);
}
.legend-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-muted); }
.arrow-up     { color: var(--up);     font-size: 12px; font-weight: 700; width: 12px; text-align: center; }
.arrow-down   { color: var(--down);   font-size: 12px; font-weight: 700; width: 12px; text-align: center; }
.arrow-steady { color: var(--steady); font-size: 12px; font-weight: 700; width: 12px; text-align: center; }

/* ── Loading overlay ─────────────────────────────────────────────────────── */
.loading-overlay {
  position: absolute; inset: 0; z-index: 700;
  background: rgba(7,15,30,0.88); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  color: var(--text-muted); font-size: 13px;
}
.loading-overlay.hidden { display: none; }

.loader-ring {
  width: 44px; height: 44px;
  border: 3px solid var(--border); border-top-color: var(--accent);
  border-radius: 50%; animation: spin 0.8s linear infinite;
  box-shadow: 0 0 16px var(--accent-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast ───────────────────────────────────────────────────────────────── */
.toast {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 800; background: rgba(10,18,38,0.95); backdrop-filter: blur(8px);
  border: 1px solid var(--border-hi); border-radius: var(--radius);
  color: var(--text); padding: 10px 20px; font-size: 12px;
  box-shadow: var(--shadow); white-space: nowrap;
}
.toast.error { border-color: var(--danger); color: var(--danger); }

/* ── Mobile overlay backdrop ─────────────────────────────────────────────── */
.sidebar-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1099;
  background: rgba(0,0,0,0.55);
}

/* ── Responsive — tablet/mobile ──────────────────────────────────────────── */
@media (max-width: 700px) {
  :root {
    --header-h: 52px;
    --sidebar-w: 100vw;
  }

  /* Header: stack into two rows */
  .app-header {
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    min-height: var(--header-h);
    padding: 8px 12px;
    gap: 8px;
  }

  .header-left  { flex: 0 0 auto; }
  .header-right { flex: 0 0 auto; margin-left: auto; }
  .header-centre {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    padding-bottom: 4px;
  }

  /* Smaller logo sub-text */
  .logo-sub { display: none; }

  /* Fuel selector full-width in header */
  .fuel-selector-header { width: 100%; max-width: 100%; }
  .fuel-selector-header .fuel-select { width: 100%; padding: 7px 8px; font-size: 13px; }

  /* Floating loc button — bigger on mobile */
  .map-loc-btn { width: 42px; height: 42px; bottom: 28px; }
  .map-loc-btn svg { width: 24px; height: 24px; }

  /* Hide the last-updated text, keep the dot */
  .last-updated { display: none; }

  /* Body fills below header */
  .app-body {
    flex-direction: column;
    height: calc(100vh - var(--actual-header-h, var(--header-h)));
    height: calc(100dvh - var(--actual-header-h, var(--header-h)));
    margin-top: var(--actual-header-h, var(--header-h));
  }

  /* Sidebar slides in as an overlay */
  .sidebar {
    position: fixed;
    top: var(--actual-header-h, var(--header-h));
    left: 0;
    bottom: 0;
    z-index: 1100;
    width: min(340px, 92vw);
    transform: translateX(0);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 32px rgba(0,0,0,0.7);
  }
  .sidebar.collapsed {
    width: min(340px, 92vw); /* keep width, use transform instead */
    transform: translateX(-100%);
  }

  .sidebar-backdrop.visible {
    display: block;
  }

  /* Map takes full screen */
  .map-wrap { flex: 1; width: 100%; }

  /* Larger tap targets in sidebar */
  .station-card { padding: 12px 14px 12px 16px; }
  .station-name  { font-size: 13px; }
  .station-price { font-size: 16px; }

  .ctrl-select { padding: 7px 6px; font-size: 13px; }
  .seg-sm .seg-btn { padding: 6px 8px; font-size: 11px; }

  /* Legend stays bottom-left, clear of Leaflet attribution */
  .map-legend { bottom: 28px; left: 12px; }

  /* Popup: min() in the base rule handles this, nothing to override */
}

@media (max-width: 400px) {
  .logo-name { font-size: 15px; }
  .logo-img  { width: 26px; height: 26px; }
}
