/* Leaflet stamp markers */
.stamp-marker {
  background: transparent;
  border: none;
}

.stamp-marker > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: white;
  border: 2px solid rgb(99, 102, 241);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.stamp-marker > div:hover {
  transform: scale(1.1);
  border-color: rgb(79, 70, 229);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.leaflet-popup-content {
  margin: 0.75rem;
  font-family: inherit;
}
