.mapWrap {
  position: relative;
  width: 90%;
  height: 350px;
  /* background: #eaeaea; */
  border-radius: 6px;
  border: 1px solid var(--accentYellow);
  overflow: hidden;
  margin: 0px auto;
}

#map {
  position: absolute;
  inset: 0;
}

/* Fixed pin in the center (assumes the image tip points to the bottom middle) */
.pickerPin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%); /* tip sits at the exact center */
  width: 44px; /* adjust to your image */
  height: auto;
  pointer-events: none; /* keep map drag/pinch working */
  user-select: none;
}

.map-note{
  font-size: 10px;
  text-align: center;
  /* background-color: red; */
  /* height: 20px; */
  /* line-height: 20px; */
  /* margin: 0px; */
  color: var(--accentGreen);
}

.coords {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--light3, #e5e7eb);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 12px;
}

.actions {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid var(--light3, #ddd);
  background: var(--light1, #fff);
  cursor: pointer;
  font-size: 14px;
}
.btn.primary {
  background: var(--primary, #2563eb);
  color: #fff;
  border-color: var(--primary, #2563eb);
}

.status {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--dark2, #333);
  text-align: center;
}
