/* =============================================================================
   Region Explorer — Redesigned Panel UI
   ============================================================================= */

.regional-coverage-explorer-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
}

.regional-coverage-explorer-map {
  width: 100%;
  height: 100%;
}

/* =============================================================================
   STATS PANEL — Floating Overlay
   ============================================================================= */

.county-stats-panel {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: min(420px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  background: var(--glass-panel);
  backdrop-filter: blur(var(--blur-subtle));
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 32px rgb(0 0 0 / 30%);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  min-height: 4.1rem;
}

.stats-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  line-height: 1.35;
}

.stats-toggle-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0.45rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.stats-toggle-btn:hover {
  background: var(--surface-3);
  color: var(--text-primary);
}

.stats-toggle-btn i {
  transition: transform 0.3s ease;
}

.stats-panel--collapsed .stats-toggle-btn i {
  transform: rotate(180deg);
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.1rem 1.25rem 1.2rem;
  max-height: calc(100vh - 7.25rem);
  overflow-y: auto;
  scrollbar-width: thin;
}

.stats-panel--collapsed .stats-content {
  display: none;
}

/* =============================================================================
   SUMMARY BAR — Compact 3-pill overview (always visible)
   ============================================================================= */

.coverage-summary-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0;
}

.summary-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.72rem;
  min-height: 3.1rem;
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid rgb(var(--text-rgb) / 8%);
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 0;
}

.summary-pill:hover:not(.summary-pill--active) {
  background: var(--surface-3);
}

.summary-pill--active {
  border-color: rgb(var(--cat-indigo-rgb) / 35%);
  background: rgb(var(--cat-indigo-rgb) / 14%);
}

.summary-pill-icon {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.summary-pill--active .summary-pill-icon {
  color: var(--cat-indigo);
}

.summary-pill-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.summary-pill-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-family-mono);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-pill-label {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.55px;
  line-height: 1.2;
}

/* =============================================================================
   LEVEL TAB SWITCHER
   ============================================================================= */

.coverage-level-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0.35rem;
  background: rgb(var(--text-rgb) / 4%);
  border-radius: var(--radius-lg);
  border: 1px solid rgb(var(--text-rgb) / 6%);
}

.coverage-level-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.58rem 0.35rem;
  min-height: 2.4rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.coverage-level-btn:hover {
  color: var(--text-primary);
  background: rgb(var(--text-rgb) / 5%);
}

.coverage-level-btn--active {
  color: var(--text-primary);
  background: rgb(var(--cat-indigo-rgb) / 20%);
  border-color: rgb(var(--cat-indigo-rgb) / 35%);
}

/* =============================================================================
   LEVEL VIEW — Dynamic content container
   ============================================================================= */

.level-view {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  animation: levelFadeIn 0.2s ease;
}

@keyframes levelFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
   HERO STAT — Progress ring + count
   ============================================================================= */

.level-hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: var(--surface-elevated);
  border-radius: var(--radius-xl);
  margin: 0;
}

.hero-ring {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.hero-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero-ring-bg {
  fill: none;
  stroke: rgb(var(--text-rgb) / 8%);
  stroke-width: 6;
}

.hero-ring-fill {
  fill: none;
  stroke: var(--success);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-ring-fill--state {
  stroke: var(--cat-indigo);
}

.hero-ring-fill--city {
  stroke: var(--cat-sage);
}

.hero-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-family-mono);
  color: var(--text-primary);
}

.hero-detail {
  flex: 1;
  min-width: 0;
}

.hero-count {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  font-family: var(--font-family-display);
}

.hero-count-total {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

/* =============================================================================
   STAT BADGE (e.g., "12 Stopped In")
   ============================================================================= */

.level-stat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: rgb(var(--info-rgb) / 12%);
  border: 1px solid rgb(var(--info-rgb) / 22%);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--info);
  margin: 0;
}

/* =============================================================================
   LEVEL LEGEND — Inline, compact
   ============================================================================= */

.level-legend {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  margin: 0;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.legend-row--toggle {
  justify-content: flex-start;
}

.legend-row--toggle .form-check.form-switch {
  margin: 0 0 0 auto;
}

.legend-row--toggle .form-check-input {
  cursor: pointer;
  border-color: rgb(var(--danger-rgb) / 45%);
  background-color: rgb(var(--danger-rgb) / 8%);
}

.legend-row--toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.18rem rgb(var(--danger-rgb) / 24%);
}

.legend-row--toggle .form-check-input:checked {
  background-color: var(--danger);
  border-color: var(--danger-dark);
}

.legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}

.legend-swatch--visited {
  background: var(--success);
}

.legend-swatch--stopped {
  background: var(--info);
}

.legend-swatch--unvisited {
  background: rgb(var(--text-rgb) / 5%);
  border: 1px solid rgb(var(--text-rgb) / 20%);
}

.legend-swatch--state-low {
  background: rgb(245 242 236 / 25%);
}

.legend-swatch--state-mid {
  background: rgb(111 179 136 / 55%);
}

.legend-swatch--state-high {
  background: rgb(62 132 91 / 85%);
}

/* =============================================================================
   LEVEL LIST — State / City list sections
   ============================================================================= */

.level-list-section {
  border-top: 1px solid var(--divider-color);
  padding-top: 0.9rem;
}

.level-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  gap: 0.75rem;
}

.level-list-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.3;
}

.level-sort-select {
  width: clamp(10.5rem, 45%, 12.5rem);
  max-width: 100%;
  min-height: 2.35rem;
  background-color: var(--surface-elevated);
  border: 1px solid rgb(var(--text-rgb) / 10%);
  color: var(--text-primary);
  font-size: 0.84rem;
  line-height: 1.25;
}

/* State list items */
.state-stats-list {
  max-height: clamp(15rem, 34vh, 24rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.state-stat-item {
  background: var(--surface-elevated);
  border: 1px solid rgb(var(--text-rgb) / 10%);
  border-radius: var(--radius-lg);
  padding: 0.88rem 0.95rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.state-stat-item:hover {
  background: var(--surface-3);
  border-color: rgb(var(--text-rgb) / 10%);
  transform: translateY(-1px);
}

.state-stat-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--cat-indigo);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.state-stat-item--complete {
  border-color: rgb(var(--success-rgb) / 30%);
  background: rgb(var(--success-rgb) / 8%);
}

.state-stat-item--selected {
  border-color: rgb(var(--cat-indigo-rgb) / 45%);
  background: rgb(var(--cat-indigo-rgb) / 16%);
  box-shadow: inset 0 0 0 1px rgb(var(--cat-indigo-rgb) / 20%);
}

.state-stat-item--selected::before {
  opacity: 1;
}

.state-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
  gap: 0.75rem;
}

.state-name {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.state-coverage {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: var(--font-family-mono);
  line-height: 1.35;
}

.state-coverage--visited {
  color: var(--success);
}

.state-stat-details {
  margin: 0;
}

.state-counties {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.state-progress-bar {
  height: 4px;
  background: rgb(var(--text-rgb) / 10%);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.35rem;
}

.state-progress-fill {
  height: 100%;
  background: var(--success);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.state-date {
  font-size: 0.74rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* City list items */
.city-stats-list {
  max-height: clamp(15rem, 34vh, 24rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.city-stat-item {
  background: var(--surface-elevated);
  border: 1px solid rgb(var(--text-rgb) / 10%);
  border-radius: var(--radius-lg);
  padding: 0.88rem 0.95rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.city-stat-item:hover {
  background: var(--surface-3);
  border-color: rgb(var(--text-rgb) / 10%);
  transform: translateY(-1px);
}

.city-stat-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--success);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.city-stat-item--selected {
  border-color: rgb(var(--success-rgb) / 45%);
  background: rgb(var(--success-rgb) / 16%);
  box-shadow: inset 0 0 0 1px rgb(var(--success-rgb) / 20%);
}

.city-stat-item--selected::before {
  opacity: 1;
}

.city-stat-item--stopped {
  border-color: rgb(var(--danger-rgb) / 26%);
  background: rgb(var(--danger-rgb) / 8%);
}

.city-stat-item--stopped::before {
  background: var(--danger);
  opacity: 0.45;
}

.city-stat-item--stopped.city-stat-item--selected {
  border-color: rgb(var(--danger-rgb) / 45%);
  background: rgb(var(--danger-rgb) / 16%);
  box-shadow: inset 0 0 0 1px rgb(var(--danger-rgb) / 22%);
}

.city-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 0.6rem;
}

/* City filters */
.city-filters {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0.8rem 0 0.2rem;
}

.city-filters .form-select,
.city-filters .form-control {
  background-color: var(--surface-elevated);
  border: 1px solid rgb(var(--text-rgb) / 10%);
  color: var(--text-primary);
  min-height: 2.35rem;
  font-size: 0.82rem;
  line-height: 1.3;
}

.city-filters #city-search {
  grid-column: 1 / -1;
}

/* City pagination */
.city-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.city-pagination-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Empty list state */
.empty-list {
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding: 1rem;
  text-align: center;
  background: var(--surface-elevated);
  border-radius: var(--radius-md);
}

/* =============================================================================
   CACHE INFO / RECALCULATE
   ============================================================================= */

.cache-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.85rem 0.95rem;
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid rgb(var(--text-rgb) / 10%);
  margin-top: 0.2rem;
  gap: 0.85rem;
}

.last-updated {
  font-size: 0.84rem;
  color: var(--text-secondary);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  line-height: 1.3;
}

.last-updated-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  color: var(--text-tertiary);
}

.last-updated-value {
  color: var(--text-primary);
  font-weight: 500;
}

#recalculate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  padding: 0.56rem 0.95rem;
  min-height: 2.6rem;
  white-space: nowrap;
}

.recalculate-status {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
  padding: 0.75rem 0.78rem;
  border-radius: var(--radius-md);
  background: rgb(var(--cat-indigo-rgb) / 8%);
  border: 1px solid rgb(var(--cat-indigo-rgb) / 20%);
}

.recalculate-status--active {
  display: flex;
}

.recalc-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.recalc-message {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
}

.recalc-stage {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.recalc-progress-track {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(var(--text-rgb) / 8%);
}

.recalc-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--cat-indigo);
  transition: width 0.25s ease;
}

.recalc-progress-label {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.recalc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.recalc-chip {
  font-size: 0.72rem;
  padding: 0.17rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgb(var(--text-rgb) / 13%);
  background: rgb(var(--text-rgb) / 5%);
  color: var(--text-secondary);
}

.recalculate-prompt {
  background: rgb(var(--info-rgb) / 12%);
  border: 1px solid rgb(var(--info-rgb) / 30%);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.recalculate-prompt p {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}

/* =============================================================================
   TOOLTIP STATUS — shared by tooltip and city list
   ============================================================================= */

.tooltip-status {
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0.2rem 0.48rem;
  border-radius: 3px;
  display: inline-block;
  white-space: nowrap;
}

.tooltip-status--visited {
  background: rgb(var(--success-rgb) / 20%);
  color: var(--success);
  border: 1px solid rgb(var(--success-rgb) / 30%);
}

.tooltip-status--unvisited {
  background: rgb(var(--text-rgb) / 5%);
  color: var(--text-secondary);
  border: 1px solid rgb(var(--text-rgb) / 10%);
}

.tooltip-status--stopped {
  background: rgb(var(--info-rgb) / 20%);
  color: var(--info);
  border: 1px solid rgb(var(--info-rgb) / 35%);
}

/* =============================================================================
   MAP TOOLTIP
   ============================================================================= */

.county-tooltip {
  position: absolute;
  background: var(--glass-panel);
  backdrop-filter: blur(var(--blur-subtle));
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgb(0 0 0 / 30%);
  border: 1px solid var(--border-color);
  pointer-events: none;
  z-index: 200;
  max-width: 280px;
  transform: translate(-50%, -100%);
  margin-top: -10px;
}

.tooltip-county-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.tooltip-state-name {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.tooltip-dates {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgb(var(--text-rgb) / 10%);
}

.tooltip-date {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 0.1rem;
}

.tooltip-date .date-label {
  color: var(--text-tertiary);
  margin-right: 0.2rem;
}

/* =============================================================================
   LOADING OVERLAY
   ============================================================================= */

.map-loading-overlay {
  position: absolute;
  inset: 0;
  background: var(--surface-0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

.map-loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-text {
  color: var(--text-primary);
}

/* =============================================================================
   RESPONSIVE — Mobile bottom-sheet
   ============================================================================= */

@media (width <= 900px) {
  .county-stats-panel {
    position: fixed;
    inset: auto 0 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    max-height: 78vh;
    z-index: 100;
  }

  .stats-header {
    position: relative;
    min-height: 3.9rem;
    padding: 1.15rem 1rem 0.8rem;
  }

  .stats-header::before {
    content: "";
    display: block;
    width: 36px;
    height: 4px;
    background: var(--border-color);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
  }

  .stats-content {
    gap: 0.85rem;
    padding: 0.95rem 1rem 1rem;
    max-height: calc(78vh - 3.9rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .coverage-summary-bar {
    gap: 0.3rem;
  }

  .summary-pill {
    min-height: 3.2rem;
    padding: 0.45rem 0.35rem;
    flex-direction: column;
    text-align: center;
    gap: 2px;
  }

  .summary-pill-icon {
    display: none;
  }

  .summary-pill-text {
    align-items: center;
  }

  .level-hero {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .hero-ring {
    width: 60px;
    height: 60px;
  }

  .hero-count {
    font-size: 1.15rem;
  }

  .city-filters {
    grid-template-columns: 1fr;
  }

  .level-list-header {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.7rem;
  }

  .level-sort-select {
    width: 100%;
  }

  .state-stats-list,
  .city-stats-list {
    max-height: min(40vh, 22rem);
  }

  .cache-info {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
  }

  #recalculate-btn {
    width: 100%;
  }
}

@media (width <= 540px) {
  .coverage-level-switcher {
    gap: 0.3rem;
  }

  .coverage-level-btn {
    font-size: 0.74rem;
    padding: 0.45rem 0.2rem;
  }

  .state-name {
    font-size: 0.92rem;
  }

  .state-coverage {
    font-size: 0.9rem;
  }

  .state-counties {
    font-size: 0.79rem;
  }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
  .level-view {
    animation: none;
  }

  .hero-ring-fill {
    transition: none;
  }

  .state-progress-fill {
    transition: none;
  }
}

/* =============================================================================
   LIGHT MODE — Token overrides
   ============================================================================= */

[data-bs-theme="light"] .county-stats-panel {
  background: rgb(255 255 255 / 95%);
  border-color: rgb(0 0 0 / 10%);
  box-shadow: 0 8px 32px rgb(0 0 0 / 10%);
}

[data-bs-theme="light"] .county-tooltip {
  background: rgb(255 255 255 / 95%);
  border-color: rgb(0 0 0 / 10%);
}

[data-bs-theme="light"] .map-loading-overlay {
  background: var(--surface-0);
}
