/* Styling pour le conteneur de la carte */
#map {
	height: 96vh;
	width: 99vw;
}

body {
	font-family: Roboto, Ubuntu, Arial, Helvetica, sans-serif;
}

.marker-list-btn {
	background: white;
	border: 2px solid #007bff;
	padding: 5px;
	cursor: pointer;
	border-radius: 5px;
}

#marker-list-container {
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
	width: 300px;
	background: white;
	border: 1px solid #ccc;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	/* Priorité d'affichage élevée */
}

#search-bar {
	width: 97%;
	padding: 5px;
	margin-bottom: 10px;
}

#marker-items {
	list-style: none;
	padding: 0;
	max-height: 300px;
	overflow-y: auto;
}

#marker-items li {
	padding: 8px;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}

#marker-items li:hover {
	background: #f0f0f0;
}