/* ===========================================================================
   RainCycle Pro — UI theme
   =========================================================================== */
:root {
  --bg:        #eef2f7;
  --card:      #ffffff;
  --ink:       #0f172a;
  --muted:     #64748b;
  --line:      #e5e9f0;
  --accent:    #2563eb;
  --accent-d:  #1d4ed8;
  --good:      #16a34a;
  --warn:      #f59e0b;
  --bad:       #dc2626;
  --radius:    14px;
  --shadow:    0 1px 2px rgba(15,23,42,.04), 0 6px 20px rgba(15,23,42,.06);
}

* { box-sizing: border-box; }

html, body, #react-entry-point, ._dash-loading {
  margin: 0; height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.app-root { height: 100vh; display: flex; flex-direction: column; overflow: hidden; }

/* ── Header ───────────────────────────────────────────────────────────── */
.app-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px 12px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 6px rgba(15,23,42,.04);
  z-index: 20;
  flex-wrap: wrap; row-gap: 14px;
}
.brand { display: flex; align-items: center; gap: 9px; white-space: nowrap; margin-right: 6px; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: grid; place-items: center; color: #fff; font-size: 17px;
  box-shadow: 0 4px 10px rgba(37,99,235,.35);
}
.brand .name { font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand .name span { color: var(--accent); }

/* ── Route fields ─────────────────────────────────────────────────────── */
.route-fields {
  display: flex; align-items: center; gap: 8px;
  flex: 0 1 430px; min-width: 300px;
}
.field {
  position: relative; flex: 1 1 0; min-width: 110px;
}
.field .field-label {
  position: absolute; top: -7px; left: 11px; z-index: 3;
  background: var(--card); padding: 0 6px; line-height: 1;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); pointer-events: none;
}
/* dcc.Dropdown overrides */
.loc-input .Select-control {
  border-radius: 10px !important;
  border: 1px solid var(--line) !important;
  height: 42px; box-shadow: none !important;
  transition: border-color .15s, box-shadow .15s;
}
.loc-input.is-focused .Select-control,
.loc-input .Select-control:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12) !important;
}
.loc-input .Select-placeholder,
.loc-input .Select-value { line-height: 40px !important; padding-left: 12px !important; }
.loc-input .Select-input { height: 40px; padding-left: 12px !important; }
.loc-input .Select-value-label { font-weight: 600; }
.loc-input .Select-menu-outer {
  border-radius: 10px !important; overflow: hidden;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important; margin-top: 4px;
}
.loc-input .VirtualizedSelectOption { font-size: .85rem; padding: 9px 12px; }
.loc-input .VirtualizedSelectFocusedOption { background: #eff4ff; }

.reverse-btn {
  flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card);
  color: var(--accent); font-size: 17px; cursor: pointer;
  display: grid; place-items: center;
  transition: transform .25s ease, background .15s, box-shadow .15s;
}
.reverse-btn:hover { background: #eff4ff; box-shadow: 0 0 0 3px rgba(37,99,235,.10); }
.reverse-btn:active { transform: rotate(180deg) scale(.94); }

/* ── Rider controls ───────────────────────────────────────────────────── */
.rider-controls { display: flex; align-items: center; gap: 6px; }
.rider-controls .bike-dd .Select-control {
  border-radius: 9px !important; height: 38px; border: 1px solid var(--line) !important;
  box-shadow: none !important;
}
.rider-controls .bike-dd .Select-value, .rider-controls .bike-dd .Select-placeholder { line-height: 36px !important; }
.mass-input {
  width: 58px; height: 38px; border-radius: 9px;
  border: 1px solid var(--line); padding: 0 8px; font: inherit; text-align: center;
}
.mass-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.unit { font-size: .82rem; color: var(--muted); }

.btn-primary {
  height: 42px; padding: 0 22px; border: none; border-radius: 11px;
  background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff;
  font-weight: 700; font-size: .92rem; cursor: pointer; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(37,99,235,.30);
  transition: transform .12s, box-shadow .15s, filter .15s;
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 8px 22px rgba(37,99,235,.38); }
.btn-primary:active { transform: translateY(1px); }

.icon-btn {
  width: 42px; height: 42px; border-radius: 11px; cursor: pointer;
  border: 1px solid var(--line); background: var(--card); color: var(--muted);
  font-size: 18px; transition: background .15s, color .15s, transform .12s;
}
.icon-btn:hover { background: #eff4ff; color: var(--accent); }
.icon-btn:active { transform: rotate(45deg); }
.icon-btn.sm { width: 38px; height: 38px; font-size: 16px; }
.icon-btn.sm:active { transform: scale(.92); }

/* saved-commute controls */
.commute-controls { display: flex; align-items: center; gap: 6px; }
.commute-dd .Select-control { border-radius: 9px !important; height: 38px;
  border: 1px solid var(--line) !important; box-shadow: none !important; }
.commute-dd .Select-value, .commute-dd .Select-placeholder { line-height: 36px !important; }
.commute-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px; border: 1px solid var(--line); border-radius: 9px;
  margin-top: 6px; font-size: .85rem; font-weight: 600;
}
.auto-check label { display: flex; align-items: center; gap: 5px; cursor: pointer;
  font-size: .8rem; color: var(--muted); font-weight: 600; }
.auto-check input { accent-color: var(--accent); }

/* ── Settings modal ───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,.45);
  display: none; place-items: center; z-index: 60;
  animation: fade .18s ease;
}
.modal-overlay.open { display: grid; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  width: 430px; max-width: 92vw; background: var(--card);
  border-radius: 16px; box-shadow: 0 20px 60px rgba(15,23,42,.3);
  overflow: hidden; animation: island-in .22s cubic-bezier(.2,.8,.2,1);
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  font-weight: 800; font-size: 1.05rem;
}
.modal-x { border: none; background: none; font-size: 18px; cursor: pointer;
  color: var(--muted); border-radius: 8px; width: 30px; height: 30px; }
.modal-x:hover { background: #f1f5f9; color: var(--ink); }
.modal-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.set-label { font-size: .7rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); margin: 10px 0 4px; }
.set-input { width: 100%; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); padding: 0 12px; font: inherit; }
.set-input:focus { outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.modal-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--line); background: #f8fafc;
}
.set-note { font-size: .76rem; color: var(--muted); }

/* ── Main split ───────────────────────────────────────────────────────── */
.app-main { flex: 1 1 auto; display: flex; gap: 14px; padding: 14px; min-height: 0; }
.map-col  { flex: 1 1 58%; min-width: 0; display: flex; flex-direction: column;
            background: var(--card); border: 1px solid var(--line);
            border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.side-col { flex: 1 1 42%; min-width: 360px; display: flex; flex-direction: column;
            gap: 14px; min-height: 0; overflow-y: auto; }

/* map wrapper holds the graph + the floating control */
.map-wrap { position: relative; flex: 1; min-height: 0; display: flex; }

/* valid-time badge (top-left of map) */
.valid-badge {
  position: absolute; top: 12px; left: 12px; z-index: 6;
  background: rgba(255,255,255,0.92); border: 1px solid var(--line);
  border-radius: 10px; padding: 6px 12px; font-size: .82rem; font-weight: 800;
  color: var(--ink); box-shadow: var(--shadow); letter-spacing: .01em;
}

/* floating layers control (top-right of map) */
.map-fab { position: absolute; top: 12px; right: 12px; z-index: 50;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.fab-btn {
  width: 40px; height: 40px; border-radius: 11px; cursor: pointer;
  border: 1px solid var(--line); background: var(--card); color: var(--accent);
  font-size: 18px; box-shadow: var(--shadow);
  display: grid; place-items: center; transition: background .15s, transform .12s;
}
.fab-btn:hover { background: #eff4ff; }
.fab-btn:active { transform: scale(.95); }
.layers-panel {
  width: 196px; background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 12px 14px;
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease;
  opacity: 0; transform: scale(.92) translateY(-6px); pointer-events: none;
}
.layers-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.fab-title { font-size: .66rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.fab-radio .rc-radio-item {
  display: flex; align-items: center; padding: 6px 9px; margin: 2px 0; cursor: pointer;
  font-size: .84rem; font-weight: 600; color: var(--muted);
  border-radius: 8px; border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.fab-radio .rc-radio-item:hover { background: #f1f5f9; color: var(--ink); }
.fab-radio label:has(input:checked) {
  background: #fff; color: var(--ink);
  border-color: #94a3b8;
  box-shadow: 0 1px 3px rgba(15,23,42,.10);
}
.fab-radio input[type="radio"] { display: none; }

.fab-sep { height: 1px; background: var(--line); margin: 12px -14px; }
.fab-check label { display: flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 700; color: var(--ink); cursor: pointer; }
.fab-check input { accent-color: var(--accent); width: 15px; height: 15px; }
.field-controls { margin-top: 10px; }
.field-time-label { font-size: .74rem; color: var(--accent); font-weight: 700;
  margin-bottom: 2px; }
.rain-legend { display: flex; align-items: center; gap: 6px; margin-top: 2px;
  font-size: .64rem; color: var(--muted); }
.rain-legend-bar { flex: 1; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #cfe8ff, #6db5ff, #2b7bff, #1fd17a,
              #c8e61f, #ffd11f, #ff7a1f, #e60000, #b300b3); }

/* map toolbar (legacy segmented control, still used for header mode toggle) */
.map-toolbar {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-bottom: 1px solid var(--line);
}
.map-toolbar .tb-label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.seg { display: inline-flex; gap: 2px; padding: 2px;
  border-radius: 10px; background: #f1f5f9; border: 1px solid var(--line); }
.seg .rc-radio-item {
  display: inline-block; padding: 6px 14px; margin: 0; cursor: pointer;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  border-radius: 8px; border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.seg input[type="radio"] { display: none; }
.seg .rc-radio-item:hover { color: var(--ink); }
/* selected: soft grey outline + readable dark text (no heavy blue fill) */
.seg label:has(input:checked) {
  background: #fff; color: var(--ink);
  border-color: #94a3b8;
  box-shadow: 0 1px 3px rgba(15,23,42,.10);
}

/* ── Cards ────────────────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card-title {
  font-size: .72rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted);
  padding: 12px 16px 0;
}
.chart-card { padding-bottom: 6px; }
.table-card { padding: 4px 4px 8px; }

/* ── Dynamic island ───────────────────────────────────────────────────── */
.island {
  border-radius: var(--radius); padding: 16px 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e9ff 100%);
  border: 1px solid #d4e0ff;
  box-shadow: var(--shadow);
  animation: island-in .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes island-in { from { opacity: 0; transform: translateY(-6px) scale(.99); } to { opacity: 1; transform: none; } }
.island-head { display: flex; align-items: center; gap: 9px; }
.island-head .ic {
  width: 30px; height: 30px; border-radius: 9px; flex: 0 0 auto;
  background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 16px;
  box-shadow: 0 4px 10px rgba(37,99,235,.3);
}
.island-head .hl { font-size: 1.18rem; font-weight: 800; letter-spacing: -.01em; color: #15315e; }
.island-sub { margin: 3px 0 0 39px; color: #334155; font-size: .9rem; }
.island-stats { margin: 10px 0 0 39px; display: flex; gap: 18px; }
.island-stats .stat .k { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.island-stats .stat .v { font-size: 1.0rem; font-weight: 800; }
.weather-kit { margin: 12px 0 0; padding-top: 11px; border-top: 1px dashed #c7d6f5; }
.weather-line { font-size: .82rem; color: #334155; font-weight: 600; margin-bottom: 7px; }
.kit-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.kit-chip {
  display: inline-flex; align-items: center; gap: 2px;
  background: #f1f5f9; border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 10px; font-size: .76rem; font-weight: 600; color: var(--ink);
}
.warn-banner {
  background: linear-gradient(135deg, #fef2f2, #fee2e2); border: 1px solid #fecaca;
  color: #b91c1c; font-weight: 800; font-size: .86rem;
  border-radius: 10px; padding: 9px 12px; margin-bottom: 10px;
}

.island-wind { margin: 12px 0 0; padding-top: 11px; border-top: 1px dashed #c7d6f5; }
.wind-badge { color: #fff; border-radius: 7px; padding: 2px 9px; font-weight: 800; font-size: .78rem; }
.island-empty { color: var(--muted); font-size: .92rem; }

/* comparison cards (Leave now | Best) */
.island-headline { font-size: .82rem; margin-bottom: 10px; }
.option-cards { display: flex; gap: 10px; }
.option-card {
  flex: 1; cursor: pointer; border-radius: 12px; padding: 11px 13px;
  background: #fff; border: 2px solid var(--line);
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.option-card:hover { border-color: #b9c8ee; box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.option-card:active { transform: translateY(1px); }
.option-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.14);
  background: linear-gradient(135deg, #fff, #eff4ff);
}
.oc-kicker { font-size: .68rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); }
.oc-sub { font-size: .74rem; color: #94a3b8; margin-top: 1px; }
.oc-big { font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.oc-unit { font-size: .9rem; font-weight: 700; color: var(--muted); }
.oc-foot { font-size: .72rem; color: #64748b; margin-top: 2px; }

.dep-table tbody tr { cursor: pointer; }
.dep-table tr.is-active { background: #eff4ff !important; box-shadow: inset 3px 0 0 var(--accent); }
.dep-table tr.is-active td { font-weight: 700; }

/* route option cards (fastest vs driest) */
.routes-card { padding: 12px 14px; }
.route-cards { display: flex; gap: 10px; margin-top: 8px; }
.route-card {
  flex: 1; cursor: pointer; border-radius: 12px; padding: 10px 12px;
  background: #fff; border: 2px solid var(--line);
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.route-card:hover { border-color: #b9c8ee; box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.route-card:active { transform: translateY(1px); }
.route-card.active {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.14);
  background: linear-gradient(135deg, #fff, #eff4ff);
}
.rc-tag { font-size: .66rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent); }
.rc-big { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.rc-unit { font-size: .8rem; font-weight: 700; color: var(--muted); }
.rc-sub { font-size: .78rem; color: #94a3b8; }
.rc-foot { font-size: .72rem; color: #64748b; margin-top: 2px; }

/* risk-tolerance auto-pick control */
.risk-ctl { display: flex; align-items: center; gap: 6px; min-width: 200px; }
.risk-ctl > div:nth-child(2) { flex: 1; }
.risk-label { font-size: .72rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* ── Table ────────────────────────────────────────────────────────────── */
.dep-table { border-collapse: separate; border-spacing: 0; width: 100%; font-size: .82rem; }
.dep-table th {
  text-align: left; font-size: .68rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); padding: 8px 12px; border-bottom: 1px solid var(--line); font-weight: 800;
}
.dep-table td { padding: 9px 12px; border-bottom: 1px solid #f1f5f9; }
.dep-table tr.is-best td { font-weight: 800; }
.dep-table tr.is-best { background: #eff4ff !important; }
.dep-table tr:hover td { background: #f8fafc; }
.bar-cell { position: relative; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.app-footer {
  display: flex; align-items: center; gap: 12px;
  padding: 7px 20px; font-size: .8rem; color: var(--muted);
  background: var(--card); border-top: 1px solid var(--line);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good);
  box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); } 70% { box-shadow: 0 0 0 7px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }

/* loading dim */
.dash-spinner * { border-color: var(--accent) transparent transparent !important; }

/* play/pause radar-loop button */
.play-btn {
  width: 28px; height: 28px; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--accent);
  font-size: 12px; display: grid; place-items: center;
}
.play-btn:hover { background: #eff4ff; }

/* ── GPS button wrapper ───────────────────────────────────────────────────── */
.from-wrap {
  display: flex; align-items: flex-end; gap: 5px;
  flex: 1 1 0; min-width: 110px;
}
.from-wrap .field { flex: 1; min-width: 0; }
.geo-btn { flex: 0 0 auto; }

/* ── Touch guard (mobile scroll-lock + zoom fix) ──────────────────────────── */
.map-touch-guard {
  display: none; /* desktop: invisible */
  position: absolute; inset: 0; z-index: 5;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.06);
  cursor: pointer;
  transition: opacity .25s;
}
.map-touch-guard.hidden { opacity: 0; pointer-events: none; }
.touch-guard-hint {
  background: rgba(255,255,255,0.94); border-radius: 20px;
  padding: 7px 15px; font-size: .82rem; font-weight: 700;
  color: #334155; box-shadow: 0 2px 10px rgba(0,0,0,.14);
  pointer-events: none;
}

/* ── Layers backdrop (mobile bottom-sheet only — never shown on desktop) ──── */
.layers-backdrop { display: none; }

/* ── In-page fullscreen map ───────────────────────────────────────────────── */
#map-col-div.fullscreen {
  position: fixed !important; inset: 0 !important; z-index: 100;
  border-radius: 0 !important; height: 100vh !important;
  flex: none !important;
}
#map-col-div.fullscreen .map-wrap { border-radius: 0; }

/* ── Mobile / responsive ──────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .app-header { gap: 8px; padding: 10px 12px; }
  .brand .name { font-size: 1rem; }
  .route-fields { flex: 1 1 100%; order: 5; min-width: 0; }
  .app-main { flex-direction: column; overflow-y: auto; padding: 10px; }
  .map-col { flex: 0 0 auto; height: 52vh; }
  .side-col { flex: 0 0 auto; min-width: 0; overflow: visible; }
  .option-cards, .route-cards { flex-direction: column; }

  /* Show touch guard */
  .map-touch-guard { display: flex; }

  /* Backdrop behind the bottom sheet */
  .layers-backdrop.open {
    display: block; position: fixed; inset: 0; z-index: 39;
    background: rgba(15,23,42,.40);
  }

  /* Layers panel → full-width bottom sheet */
  .layers-panel {
    position: fixed !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    top: auto !important; width: auto !important;
    border-radius: 20px 20px 0 0 !important;
    max-height: 78vh; overflow-y: auto;
    /* slide-up animation replaces the desktop scale/fade */
    opacity: 1 !important;
    transform: translateY(110%) !important;
    transform-origin: center bottom !important;
    transition: transform .30s cubic-bezier(.2,.8,.2,1) !important;
    pointer-events: none;
    z-index: 40;
    padding: 8px 18px 28px;
  }
  .layers-panel::before {
    content: ''; display: block; width: 40px; height: 4px;
    border-radius: 2px; background: var(--line);
    margin: 4px auto 14px;
  }
  .layers-panel.open {
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ── Extra-narrow phones (≤480 px) ───────────────────────────────────────── */
@media (max-width: 480px) {
  /* Bike-profile dropdown goes into Settings on very small screens */
  .rider-controls { display: none; }

  /* Mode toggle — compact */
  .seg .rc-radio-item { padding: 5px 11px; font-size: .78rem; }

  /* Bigger tap targets */
  .btn-primary { height: 46px; font-size: .96rem; padding: 0 18px; }
  .reverse-btn { width: 40px; height: 40px; }
  .icon-btn { width: 40px; height: 40px; }

  /* Full-width from-wrap on tiny screens */
  .from-wrap { flex: 1 1 100%; }

  /* Map takes a bit more vertical space */
  .map-col { height: 48vh; }

  /* Side col padding */
  .app-main { padding: 8px; gap: 10px; }
  .island { padding: 13px 14px; }
}

/* scrollbar */
.side-col::-webkit-scrollbar { width: 9px; }
.side-col::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 9px; }
.side-col::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
