.map-legend {
  border: 1px solid black;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  padding: 20px;
  margin-top: 12px;
  z-index: 45;

  left: 50%;
  gap: 4px;
  transform: translate(-50%);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.map-legend-item {
  display: flex;
  padding: 12px;
}

.map-legend-icon {
  transform: scale(1.5);
}

.map-legend-text {
  margin-left: 20px;
  align-self: center;
  font-weight: bold;
  font-size: 24px;
}

/* Custom */
.map-status-panel {
  border-radius: 10px;
  border-radius: 0px 0px 0px 0px;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  position: absolute;
  z-index: 45;

  right: 0;
  bottom: 0;
  margin: 0px 10px 10px 0px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.map-status-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.map-status-name {
  text-align: center;
  display: flex;
  /* justify-content: center; */
}

.map-status-name::after {
  content: " : ";
}

.map-status-count {
  text-align: center;
  display: flex;
  font-weight: 700;
  align-self: center;
}
