.real-map-shell {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 22px;
  background: #e9eff7;
  box-shadow: inset 0 0 0 1px rgba(180, 196, 215, .72);
}

.leaflet-parking-map {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  border: 0;
}

.leaflet-parking-map .leaflet-popup-content {
  min-width: 150px;
  line-height: 1.45;
}

.map-fab-row {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 700;
  display: grid;
  gap: 9px;
}

.map-fab {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 221, 235, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13, 42, 73, .12);
  cursor: pointer;
}

.map-legend {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 700;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid rgba(207, 221, 235, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 24px rgba(13, 42, 73, .12);
  scrollbar-width: none;
}

.map-legend::-webkit-scrollbar {
  display: none;
}

.map-legend span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: #f5f8fc;
  color: #20344a;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.zone-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .95);
}

@media (max-width: 780px) {
  .citizen-shell .map-screen {
    gap: 12px;
  }

  .citizen-shell .real-map-shell {
    min-height: calc(100dvh - 278px);
    margin: 0 -18px;
    border-radius: 0;
  }

  .citizen-shell .map-fab-row {
    top: 10px;
    right: 10px;
  }

  .citizen-shell .map-fab {
    width: 42px;
    height: 42px;
  }

  .citizen-shell .map-legend {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .citizen-shell .app-zone-list article {
    grid-template-columns: 54px 1fr;
  }

  .citizen-shell .app-zone-list .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}
