#map {
  width: 100%;
  height: 600px;
}

/* Éclaircir le fond de carte Urbis pour améliorer le contraste */
#map .leaflet-tile-pane {
  filter: brightness(1.15) contrast(1.1);
}

.map-scroll:before {
  content: 'Use ctrl + scroll to zoom the map';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  font-size: 34px;
}

.map-scroll:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  background: #00000061;
  z-index: 999;
}

.map-marker {
  background: url('../images/pin.svg') no-repeat;
  background-size: cover;
}

.cluster-icon {
  background: url("../images/clusterMarker.svg") no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #333;
}

.map-popup {
  max-height: 200px;
  overflow-y: scroll;
}

.leaflet-popup-content-wrapper {
  border-radius: 0;
  background-color: #B43A3F;
}

.leaflet-popup-content {
  color: white;
  background-color: #B43A3F;
}

.leaflet-popup-content a,
.leaflet-popup-content a:link,
.leaflet-popup-content a:visited {
  color: white !important;
  text-decoration: underline !important;
  font-weight: 500;
}

.leaflet-popup-content a:hover,
.leaflet-popup-content a:active {
  color: #f0f0f0 !important;
  text-decoration: none !important;
}

.leaflet-popup-content ul {
  padding-left: 1.2em;
  margin: 0.5em 0;
}

.leaflet-popup-content li,
.leaflet-popup-content a li {
  margin-bottom: 0.5em;
  font-size: 14px;
  line-height: 1.4;
  color: white !important;
}

.leaflet-popup-tip-container {
  display: none;
}

#no-result {
  text-align: center;
  margin: 4em;
}