#l_map, #l_map_offline {
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: auto;
}

.leaflet-div-icon {
  border-radius: 20px;
  font-size: 16px;
  text-align: center;
  background-color: #0d6efd;
  border-color: white;
  color: white;
  padding-top: 3px;
}

.leaflet-marker-icon.active {
  background-color: #fd7e14;
  border-color: white;
  color: white;
}

.leaflet-marker-icon.current_position {
  background-color: #0dcaf0;
  border-color: white;
  color: white;
}

.parking_spot_pin {
  background-color: #198754;
  border-color: white;
  color: white;
}

.approach_location_pin {
  background-color: #d63384;
  border-color: white;
  color: white;
}

.alpine_spot_pin {
  background-color: #20c997;
  border-color: white;
  color: white;
}

.unavailable_spot_pin {
  background-color: black;
  border-color: white;
  color: white;
}

.boulder_spot_pin {
  background-color: #dc3545;
  border-color: white;
  color: white;
}

#l_map_container {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  animation: fadein 0.5s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  #l_map, #l_map_offline {
    height: 300px;
  }
}
