/* Map container styling */
#parks-map {
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Style the popups */
.park-popup {
  min-width: 200px;
}

.park-popup h3 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 16px;
}

.park-popup p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #34495e;
}

.park-popup small {
  display: block;
  margin-bottom: 8px;
  color: #7f8c8d;
  font-size: 12px;
}

.popup-links {
  display: flex;
  justify-content: space-between;
}

.popup-links a {
  font-size: 12px;
  color: #3498db;
  text-decoration: none;
}

.popup-links a:hover {
  text-decoration: underline;
}

/* Custom icon styling */
.park-icon {
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}

.park-icon:hover {
  transform: scale(1.2);
}
