
#map {
    width: 100%;
    height: 500px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}
.marker {
    background-color: red;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.custom-marker {
  width: 36px;
  height: 36px;
  background-color: #ECAA3B;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-marker img {
  width: 22px;
  height: 22px;
}

#reset-zoom {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: white;
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  z-index: 10;
  cursor: pointer;
}
