/**
 * Leaflet Map Styles
 * Includes grayscale filter and custom marker styling
 */

/* Container for the map */
.locations-map {
  width: 100%;
  height: 400px;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Apply grayscale filter to map tiles */
.map-tiles-grayscale {
  filter: grayscale(100%);
}

/* Custom marker icon styling */
.fa-marker-icon {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure popups look good */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.leaflet-popup-content {
  margin: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
}
