/* CellExplorer — Shared explorer-series shell. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; background: #060812; color: #e6e8f0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; overflow: hidden; }
#app { display: flex; flex-direction: column; height: 100%; }

/* ===== Topbar ===== */
#topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; background: #0b0f1f;
  border-bottom: 1px solid #1c2236;
  z-index: 10;
}
.topbar-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.app-brand { display: flex; align-items: center; gap: 9px; color: inherit; text-decoration: none; }
.app-logo { width: 28px; height: 28px; object-fit: contain; }
.app-title { font-size: 15px; font-weight: 600; letter-spacing: 0.2px; }
.hint { font-size: 12px; color: #8e92a8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.topbar-sep { width: 1px; height: 22px; background: #2a3148; margin: 0 4px; }
.action-btn {
  background: #161b2e; color: #cfd3e5;
  border: 1px solid #2a3148; border-radius: 5px;
  padding: 5px 10px; font-size: 12px; cursor: pointer;
  transition: background 120ms, border-color 120ms;
}
.action-btn:hover { background: #1d2440; }
.action-btn.toggle { color: #8a90a8; }
.action-btn.toggle.on { background: #1d4a5a; color: #e6f0ff; border-color: #3a8cb4; }

/* ===== Canvas ===== */
#canvas-area { position: relative; flex: 1 1 auto; min-height: 0; background: radial-gradient(ellipse at center, #0a1422 0%, #060812 70%); }
#scene-canvas { display: block; width: 100%; height: 100%; cursor: grab; }
.loading {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-size: 14px; color: #8e92a8;
}

.hover-tip {
  position: absolute; pointer-events: none;
  background: rgba(10, 14, 30, 0.94);
  border: 1px solid rgba(90, 200, 212, 0.55);
  color: #e6e8f0;
  padding: 5px 9px; border-radius: 5px; font-size: 12px;
  transform: translate(14px, 14px);
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
.hover-tip .tip-name { font-weight: 600; letter-spacing: 0.01em; }
.hover-tip .tip-sub  { color: #9aa6c4; font-size: 11px; margin-top: 2px; }

/* ===== Floating panels ===== */
.floating-panel {
  position: absolute; z-index: 4;
  background: rgba(12, 16, 30, 0.94);
  border: 1px solid #2a3148; border-radius: 7px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 80px);
}
.floating-panel[hidden] { display: none; }
.panel-header {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 9px; background: #131a30;
  border-bottom: 1px solid #2a3148;
  border-radius: 7px 7px 0 0; cursor: grab;
  user-select: none;
}
.panel-header-title { font-size: 12px; font-weight: 600; color: #cfd3e5; }
.panel-header-spacer { flex: 1 1 auto; }
.panel-header-btn {
  background: transparent; border: 0; color: #8e92a8;
  font-size: 14px; line-height: 1; cursor: pointer; padding: 2px 5px;
}
.panel-header-btn:hover { color: #fff; }
.panel-header-search {
  background: #0b0f1f; border: 1px solid #2a3148; color: #cfd3e5;
  border-radius: 4px; padding: 3px 7px; font-size: 11px; width: 110px;
}
.panel-body { padding: 9px 11px; overflow-y: auto; }

.cell-types-panel {
  top: 56px; right: 12px; width: 248px;
  max-height: calc(100vh - 80px);
}
.cell-types-panel .panel-body { max-height: calc(100vh - 140px); }
.overlays-panel { top: 56px; right: 272px; width: 232px; }
.info-panel { top: 56px; left: 12px; width: 440px; max-height: calc(100vh - 120px); }
.library-panel { top: 56px; left: 12px; width: 268px; }
.quiz-panel {
  width: 480px; min-width: 320px; min-height: 240px;
  max-height: calc(100vh - 100px);
  top: auto; bottom: 24px;
  left: calc(50% - 240px); right: auto;
}

/* When the library panel is visible, info pops in next to it. */
.info-panel { left: 296px; }
#canvas-area:has(#library-panel[hidden]) .info-panel {
  left: 12px;
  width: 880px;
}

/* ===== Overlay checkboxes ===== */
.panel-sub-title {
  font-size: 10px; color: #6b7090; text-transform: uppercase; letter-spacing: 0.7px;
  margin: 10px 0 4px;
}
.ov-check {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: #cfd3e5;
  padding: 3px 0; cursor: pointer;
}
.ov-check input { accent-color: #5ac8d4; }
.ov-check.quiz-disabled { opacity: 0.45; cursor: not-allowed; }
.ov-check.quiz-disabled input { cursor: not-allowed; }

.cell-type-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; }
.cell-type-btn {
  background: #161b2e; color: #cfd3e5;
  border: 1px solid #2a3148; border-radius: 5px;
  padding: 6px 9px; text-align: left;
  cursor: pointer; font-size: 12.5px;
}
.cell-type-btn:hover { background: #1d2440; border-color: #3a8cb4; }
.cell-type-btn.active { background: #1d4a5a; color: #e6f0ff; border-color: #3a8cb4; }

/* ===== Library ===== */
.organelle-library { display: flex; flex-direction: column; gap: 2px; }
.org-row {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 7px; border-radius: 4px;
  cursor: pointer;
}
.org-row:hover { background: #1a2238; }
.org-row.selected { background: #1d3a5a; color: #e6f0ff; }
.org-swatch { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 12px; border: 1px solid rgba(255,255,255,0.18); }
.org-name { font-size: 12.5px; color: #cfd3e5; }
.org-row.selected .org-name { color: #e6f0ff; }
.org-sub { font-size: 10.5px; color: #8e92a8; margin-left: auto; }

/* ===== Info card ===== */
.info-empty { font-size: 12.5px; color: #8e92a8; font-style: italic; }
.info-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.info-sub   { font-size: 12px; color: #8eb7e0; margin-bottom: 8px; }
.info-section-title { font-size: 10px; color: #6b7090; text-transform: uppercase; letter-spacing: 0.7px; margin: 10px 0 4px; }
.info-body { font-size: 13px; line-height: 1.5; color: #cfd3e5; }
.info-image {
  margin: 8px 0 4px;
  padding: 0;
  background: rgba(10, 14, 30, 0.5);
  border: 1px solid #1c2236;
  border-radius: 6px;
  overflow: hidden;
}
.info-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  background: #0a0e1e;
}
.info-image-credit {
  display: block;
  font-size: 10.5px;
  color: #6b7090;
  padding: 5px 8px 6px;
  line-height: 1.35;
}
.info-image-credit a { color: #8eb7e0; text-decoration: none; }
.info-image-credit a:hover { text-decoration: underline; }
.info-facts { margin: 0; padding: 0; list-style: none; }
.info-facts li { font-size: 12.5px; color: #cfd3e5; margin: 3px 0; }
.info-facts strong { color: #8eb7e0; font-weight: 600; margin-right: 4px; }

/* ===== Quiz ===== */
.quiz-body { display: flex; flex-direction: column; gap: 11px; }

.quiz-home { display: flex; flex-direction: column; gap: 10px; }
.quiz-title { font-size: 16px; font-weight: 600; color: #fff; }
.quiz-sub   { font-size: 12.5px; color: #8e92a8; line-height: 1.45; }

.quiz-mode-list { display: flex; flex-direction: column; gap: 6px; }
.quiz-mode-btn {
  background: #161b2e; border: 1px solid #2a3148; color: #cfd3e5;
  border-radius: 6px; padding: 8px 11px; cursor: pointer;
  text-align: left; display: flex; flex-direction: column; gap: 2px;
}
.quiz-mode-btn:hover { background: #1d2440; border-color: #3a8cb4; }
.quiz-mode-name { font-size: 13px; font-weight: 600; color: #e6f0ff; }
.quiz-mode-desc { font-size: 11px; color: #8e92a8; font-weight: 400; }

.quiz-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: #8e92a8;
}
.quiz-status strong { color: #cfd3e5; }

.quiz-q {
  background: rgba(10, 14, 30, 0.6);
  border-left: 3px solid #5ac8d4;
  border-radius: 4px;
  padding: 9px 11px;
  font-size: 13px; color: #fff; line-height: 1.45;
}
.quiz-q em { font-style: italic; color: #aaddff; font-weight: 400; }

.quiz-clues { margin: 0 0 0 18px; padding: 0; font-size: 12px; color: #cfd3e5; }
.quiz-clues li { margin: 2px 0; }

.quiz-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.quiz-choice {
  background: #1a2238; border: 1px solid #3a4868;
  color: #e6e8f0; border-radius: 6px;
  padding: 8px 10px; font-size: 12.5px;
  cursor: pointer; text-align: left;
}
.quiz-choice:hover  { background: #233055; border-color: #4a6088; }
.quiz-choice.correct { background: #1a3a1c; border-color: #4a8c52; color: #b6f9b6; }
.quiz-choice.wrong   { background: #3a1a1c; border-color: #8c4a52; color: #f9b6b6; }
.quiz-choice:disabled { cursor: default; }

.quiz-find-hint { font-size: 12px; color: #8eb7e0; font-style: italic; }

.quiz-feedback {
  min-height: 18px; font-size: 12px;
  padding: 6px 8px; border-radius: 4px;
  background: transparent; color: #cfd3e5;
}
.quiz-feedback.ok { background: rgba(20, 51, 31, 0.7); color: #b6f9b6; border-left: 3px solid #5aaa5a; }
.quiz-feedback.no { background: rgba(51, 17, 17, 0.7); color: #f9b6b6; border-left: 3px solid #aa5a5a; }

.quiz-controls { display: flex; gap: 8px; justify-content: flex-end; }
.quiz-btn {
  background: #161b2e; border: 1px solid #2a3148;
  color: #cfd3e5; border-radius: 5px;
  padding: 5px 12px; font-size: 12px; cursor: pointer;
}
.quiz-btn:hover { background: #1d2440; border-color: #3a8cb4; }
.quiz-btn.primary { background: #1d4a5a; border-color: #3a8cb4; color: #e6f0ff; }
.quiz-btn.primary:hover { background: #245a72; }

.quiz-results { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.quiz-score   { font-size: 28px; font-weight: 700; color: #fff; }
.quiz-pct     { font-size: 16px; color: #8e92a8; font-weight: 400; }
.quiz-verdict { font-size: 13px; color: #cfd3e5; font-style: italic; }

/* ===== Processes panel ===== */
.processes-panel { top: 56px; left: 12px; width: 320px; max-height: calc(100vh - 100px); }
#canvas-area:has(#library-panel:not([hidden])) .processes-panel { left: 296px; }
#canvas-area:has(#library-panel:not([hidden])):has(#info-panel:not([hidden])) .processes-panel { left: 752px; }
.processes-body { padding: 6px 6px; }
.proc-list { display: flex; flex-direction: column; gap: 4px; }

.proc-cat-section { border-radius: 5px; overflow: hidden; }
.proc-cat-head {
  display: flex; align-items: center; gap: 6px;
  background: #161b2e; border: 1px solid #2a3148;
  padding: 5px 8px; cursor: pointer; user-select: none;
  border-radius: 5px;
}
.proc-cat-head:hover { background: #22223a; }
.proc-cat-caret { color: #8e92a8; transition: transform 120ms; display: inline-block; }
.proc-cat-section.open .proc-cat-caret { transform: rotate(90deg); }
.proc-cat-name { font-size: 12.5px; font-weight: 600; color: #cfd3e5; flex: 1; }
.proc-cat-count { font-size: 10.5px; color: #8e92a8; }
.proc-cat-body {
  display: none; flex-direction: column; gap: 2px;
  padding: 4px 4px 6px;
}
.proc-cat-section.open .proc-cat-body { display: flex; }
.proc-cat-section.empty { display: none; }

.proc-row {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 8px; border-radius: 4px;
  cursor: pointer;
}
.proc-row:hover { background: #1a2238; }
.proc-row.active { background: #1d3a5a; color: #e6f0ff; }
.proc-name { font-size: 12.5px; color: #cfd3e5; flex: 1; }
.proc-tag { font-size: 10px; color: #8e92a8; }
.proc-row.active .proc-name { color: #e6f0ff; }

.proc-empty { font-size: 12px; color: #8e92a8; padding: 12px 8px; text-align: center; }

/* ===== Process player (main-workspace overlay) ===== */
.player-overlay {
  position: absolute; inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse at center, #0e1424 0%, #060812 80%);
}
.player-overlay[hidden] { display: none; }
.player-canvas {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  cursor: grab;
}
.player-canvas:active { cursor: grabbing; }
.player-overlay-title-bar {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  z-index: 4; pointer-events: none;
}
.player-overlay-title {
  pointer-events: auto;
  background: rgba(10, 14, 30, 0.78);
  border: 1px solid rgba(90, 200, 212, 0.55);
  color: #e6e8f0;
  padding: 6px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.player-overlay-title-bar .player-btn.close {
  margin-left: auto;
  pointer-events: auto;
  background: #7a1d2a;
  border: 1px solid #c44b5d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px 7px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  position: relative;
}
.player-overlay-title-bar .player-btn.close::before {
  content: "\00d7";
  position: absolute;
  left: 11px; top: 50%;
  transform: translateY(-52%);
  font-size: 18px; line-height: 1;
  font-weight: 700;
}
.player-overlay-title-bar .player-btn.close:hover {
  background: #9a2538;
  border-color: #e06478;
}
.player-overlay-bar {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(10, 14, 30, 0.82);
  border: 1px solid #1c2236; border-radius: 8px;
  padding: 10px 12px;
  z-index: 4;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}
.player-labels {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.scene-labels {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.scene-labels[hidden] { display: none; }
.scene-labels .cell3d-label {
  background: rgba(10, 14, 30, 0.72);
  border-color: rgba(120, 200, 255, 0.4);
  font-size: 11.5px;
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.scene-labels .cell3d-label.selected {
  background: rgba(90, 200, 212, 0.95);
  border-color: rgba(255, 255, 255, 0.85);
  color: #08121b;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(90, 200, 212, 0.25), 0 4px 14px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -150%) scale(1.04);
}
.cell3d-label {
  position: absolute;
  transform: translate(-50%, -130%);
  white-space: nowrap;
  font: 11px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #e6e8f0;
  background: rgba(10, 14, 30, 0.78);
  border: 1px solid rgba(90, 200, 212, 0.45);
  padding: 2px 6px; border-radius: 3px;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.player-caption {
  min-height: 38px;
  font-size: 12.5px; line-height: 1.45; color: #cfd3e5;
  background: rgba(10, 14, 30, 0.6);
  border-left: 3px solid #5ac8d4;
  padding: 7px 10px; border-radius: 4px;
}
.player-scrubber {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 18px;
  background: transparent;
  cursor: pointer;
  margin: 0; padding: 0;
}
.player-scrubber:focus { outline: none; }
.player-scrubber::-webkit-slider-runnable-track {
  height: 4px; border-radius: 2px;
  background: linear-gradient(to right, #5ac8d4 0%, #5ac8d4 var(--scrub-pct, 0%), #2a3148 var(--scrub-pct, 0%), #2a3148 100%);
}
.player-scrubber::-moz-range-track {
  height: 4px; border-radius: 2px;
  background: #2a3148;
}
.player-scrubber::-moz-range-progress {
  height: 4px; border-radius: 2px;
  background: #5ac8d4;
}
.player-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: #e6f0ff;
  border: 2px solid #5ac8d4;
  margin-top: -5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  cursor: pointer;
}
.player-scrubber::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: #e6f0ff;
  border: 2px solid #5ac8d4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  cursor: pointer;
}
.player-scrubber:hover::-webkit-slider-thumb { background: #fff; border-color: #7ddce8; }
.player-scrubber:hover::-moz-range-thumb { background: #fff; border-color: #7ddce8; }
.player-controls {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.player-btn {
  background: #161b2e; border: 1px solid #2a3148; color: #cfd3e5;
  border-radius: 5px; padding: 4px 12px; font-size: 12px; cursor: pointer;
}
.player-btn:hover { background: #1d2440; border-color: #3a8cb4; }
.player-btn.primary { background: #1d4a5a; border-color: #3a8cb4; color: #e6f0ff; }
.player-btn.primary:hover { background: #245a72; }
.player-step { font-size: 11.5px; color: #8e92a8; margin-left: 4px; }
.player-spacer { flex: 1; }
.player-loop { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #cfd3e5; cursor: pointer; }
.player-loop input { accent-color: #5ac8d4; }

.player-svg .lbl {
  fill: #e6e8f0; font: 11px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  pointer-events: none;
  text-anchor: middle;
}
.player-svg .lbl-sub { fill: #8eb7e0; font-size: 10px; }
.player-svg .stroke-soft { stroke: rgba(255,255,255,0.18); }

/* ---------- Build-a-cell mode ---------- */

.builder-cell {
  position: relative;
  margin: 4px 0;
  min-height: 180px;
  padding: 28px 14px 14px 14px;
  border: 2px dashed #3a8cb4;
  border-radius: 80px / 60px;
  background: radial-gradient(ellipse at center, rgba(40, 80, 120, 0.45) 0%, rgba(20, 30, 60, 0.55) 70%, rgba(15, 22, 44, 0.7) 100%);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.builder-cell.drag-over {
  border-color: #6ae0ff;
  background: radial-gradient(ellipse at center, rgba(70, 130, 180, 0.55) 0%, rgba(30, 60, 100, 0.65) 70%, rgba(20, 30, 60, 0.8) 100%);
  box-shadow: inset 0 0 24px rgba(110, 220, 255, 0.35);
}
.builder-cell-label {
  position: absolute; top: 8px; left: 16px;
  font-size: 11.5px; color: #8eb7e0; letter-spacing: 0.04em; text-transform: uppercase;
  pointer-events: none;
}
.builder-placed {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-items: flex-start;
  min-height: 80px;
}
.builder-tray-wrap { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.builder-tray-title { font-size: 11.5px; color: #8e92a8; letter-spacing: 0.03em; }
.builder-tray {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 8px;
  background: #131a2c;
  border: 1px solid #2a3450;
  border-radius: 8px;
  min-height: 56px;
}

.builder-chip {
  display: inline-flex; align-items: center;
  padding: 6px 11px;
  font-size: 12.5px;
  background: #233055; color: #e6f0ff;
  border: 1px solid #3a4a78; border-radius: 999px;
  cursor: grab;
  user-select: none;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  touch-action: none;
}
.builder-chip:hover { background: #2c3a66; border-color: #5a6fa0; }
.builder-chip:active, .builder-chip.dragging { cursor: grabbing; opacity: 0.55; transform: scale(0.97); }
.builder-chip.placed {
  background: #1a3a1c; border-color: #4a8c52; color: #b6f9b6; cursor: default;
}
.builder-chip.placed .builder-tick { color: #b6f9b6; margin-left: 2px; font-weight: 700; }

.builder-chip.bounce-back {
  animation: builder-bounce 0.55s ease;
  border-color: #c45a5a !important;
  background: #4a1a1c !important;
  color: #ffd0d0 !important;
}
@keyframes builder-bounce {
  0%   { transform: translateX(0) scale(1); }
  20%  { transform: translateX(-8px) scale(1.03); }
  40%  { transform: translateX(8px)  scale(1.03); }
  60%  { transform: translateX(-5px) scale(1.02); }
  80%  { transform: translateX(5px)  scale(1.01); }
  100% { transform: translateX(0)    scale(1); }
}

.builder-chip.pop-in {
  animation: builder-pop 0.45s cubic-bezier(0.2, 1.4, 0.4, 1);
}
@keyframes builder-pop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

.builder-ghost {
  background: #2c3a66; border: 1px solid #6ae0ff; color: #e6f0ff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12.5px;
  opacity: 0.92;
}

.builder-wrong { color: #f9b6b6; font-weight: 600; }

/* Info-card: "When it breaks" + Related chips */
.info-when-broken {
  background: rgba(180, 60, 60, 0.10);
  border-left: 3px solid #d34d4d;
  padding: 8px 11px;
  border-radius: 4px;
  color: #f3d6d6;
}
.info-related {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.info-chip {
  background: rgba(106, 224, 255, 0.10);
  border: 1px solid rgba(106, 224, 255, 0.45);
  color: #d6f1ff;
  font: inherit;
  font-size: 12.5px;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.info-chip:hover {
  background: rgba(106, 224, 255, 0.22);
  border-color: #6ae0ff;
}
.info-chip:active { transform: scale(0.96); }
