/* Marker clusters */
.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}
.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}
.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}
.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}
.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: white;
  font-weight: bold;
  line-height: 30px;
}

.marker-cluster span {
  line-height: 30px;
}

/* Cluster animation */
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

/* MarkerCluster specific styles for AeroSync */
.marker-cluster-small {
  background-color: rgba(0, 104, 173, 0.3);
  border: 2px solid rgba(0, 104, 173, 0.6);
}
.marker-cluster-small div {
  background-color: rgba(0, 104, 173, 0.8);
}

.marker-cluster-medium {
  background-color: rgba(0, 104, 173, 0.4);
  border: 2px solid rgba(0, 104, 173, 0.7);
}
.marker-cluster-medium div {
  background-color: rgba(0, 104, 173, 0.9);
}

.marker-cluster-large {
  background-color: rgba(220, 38, 127, 0.4);
  border: 2px solid rgba(220, 38, 127, 0.7);
}
.marker-cluster-large div {
  background-color: rgba(220, 38, 127, 0.9);
}