html, body {
			height: 100%;
			margin: 0;
		}
.leaflet-container {
	height: 100%;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
}
/* Modal styles */
.modal {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
	background-color: #fefefe;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 300px;
}
.modal-button {
	background-color: #4CAF50;
	color: white;
	padding: 15px 20px;
	border: none;
	cursor: pointer;
	font-size: 16px;
}
.modal-button:hover {
	background-color: #45a049;
}