 /* la carte DOIT avoir une hauteur sinon elle n'apparaÃ®t pas */
/* #map{
    height: 500px;
} */


/* Carte plein écran */
html,
body {
	margin: 0;
	height: 90%;
}

#map {
	width: 90%;
	height: 90%;
}

	     .popup-base {
            padding: 2px 5px;
			color: black;
            border-radius: 3px;
        }
	    .popup-base-flou {
            padding: 2px 5px;
            border-radius: 3px;
			filter:blur(2px);
        }
        .popup-enseigne {
            font-weight: bold;
            background-color: blue;
            color: white;
            padding: 2px 5px;
            border-radius: 3px;
        }
		.popup-enseigne-flou {
            font-weight: bold;
            background-color: blue;
            color: white;
            padding: 2px 5px;
            border-radius: 3px;
			filter:blur(2px);
        }
		.popup-ville{
            font-weight: bold;
            color: red;
            padding: 2px 5px;
            border-radius: 3px;
        }
		.leaflet-popup-content-wrapper {
            width: 200px; /* Définit une largeur fixe */
            max-width: 400px; /* Définit une largeur maximale */
			}
		.popup-centered {
            text-align: center;
        }