.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);
}

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
}

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

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

/* Adjusted for larger, centered cluster disks with a thinner font */
.marker-cluster {
	background-clip: padding-box;
	border-radius: 25px; /* Increased border-radius for a larger disk */
}

.marker-cluster div {
	width: 50px; /* Larger disk width */
	height: 50px; /* Larger disk height */
	margin-left: 0px;
	margin-top: 0px;
	display: flex; /* Enable flexbox for centering */
	align-items: center; /* Vertical centering */
	justify-content: center; /* Horizontal centering */
	text-align: center;
	border-radius: 25px; /* Half of width/height for a perfect circle */
	font: 20px "Helvetica Neue", Arial, Helvetica, sans-serif; /* Larger, thinner font */
	font-weight: 200; /* Thinner weight if available */
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.marker-cluster span {
	line-height: 50px; /* Match the height of the disk for centering */
}
