uix-map-view main {
  position: relative;
  width: 100%;
  height: 100%;
}

uix-map-view #map-container {
  width: 100%;
  height: 100%;
}

uix-map-view #consent-note {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 60px;
  display: none;
}

uix-map-view .legend {
  background-color: var(--bg-content-light);
  border-radius: 5px;
  bottom: 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 10px;
  position: absolute;
  right: 10px;
  z-index: 1;
}
uix-map-view .legend div {
  display: flex;
  line-height: 1em;
  margin-bottom: 2px;
}
uix-map-view .legend span {
  height: 1em;
  width: 1em;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
}

uix-map-view .blue-dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(181, 181, 181, 0.5);
  /* Glowing effect */
}

uix-map-view .blue-dot-radius {
  width: 30px;
  height: 30px;
  background-color: rgba(169, 169, 169, 0.2);
  /* Transparent blue */
  border-radius: 50%;
  position: absolute;
  top: -9px;
  /* Center the circle */
  left: -9px;
  pointer-events: none;
  /* Allow clicks to pass through */
}
