body {
  margin: 0;
  font-family: Segoe UI;
  background: #f5f5f5;
}

.map-section {
  width: 95%;
  margin: 40px auto;
}

h2 {
  text-align: center;
  color: #14532d;
  margin-bottom: 20px;
}

/* CONTROLS */
.map-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 10px;
}

#searchInput {
  padding: 10px;
  width: 250px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.filters button {
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: #ddd;
}

.filters button.active {
  background: #ff6a00;
  color: #fff;
}

/* MAP */
#map {
  height: 550px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* MARKER */
.marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff6a00;
  position: relative;
}

.marker::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
