.text h3 {
	color: orange;

}

.text p {
	font-size: .8rem;
	line-height: 1.5;

}

#my-map {
	width: 100%;
	margin: auto;
	height: 83vh;
	position: relative;
	background-color: white;
}

#parentContainer {
	position: absolute; 
	bottom: 5%;
	left: 5%;
	z-index: 1000;
	max-width: 250px;
}

#legend {
	border: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	background-color: white;
	padding: 10px;
	line-height: 1.5;
	margin-bottom: 15px;
}

#kleurblindheidSelector {
	background-color: white;
	padding: 10px;
}


/* Style for the fixed popup content container on the right */
.popup-content-container {
	position: absolute;
	top: 5%;
	right: 10%;
	width: 650px;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow: auto;  /* Enable vertical scrolling */
	max-height: 75vh;
}



/* Style for the close button */
.close-popup-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #736E97;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	font-size: 14px;
}

/* Style the popup content */
.popup-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #333;
	white-space: pre-wrap;
	max-width: 100%;
}

/* Map hover popup style */
.hover-popup {
	background-color: #fff;
	color: #000;
	padding: 5px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: bold;
	border: 0px solid black;
}

/* "Bestel nu" button style */
.bestel-button {
	background-color: #90B494;
	color: white;
	padding: 10px 20px;
	font-size: 14px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	margin-top: 10px;
	display: inline-block;
	transition: all 250ms ease-in-out;
}

.bestel-button:hover {
	background-color: #78a07f;
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.bestel-button:active {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transform: translateY(2px);
}

