/* Panel flotante para añadir lugares */
.place-input-panel {
  position: absolute;
  top: 60px;        /* debajo de la barra superior de Leaflet */
  left: 10px;
  z-index: 1000;
  background: #fff;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

.place-input-panel input {
  padding: 4px 6px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 13px;
  width: 180px;
}

.place-input-panel button {
  margin-left: 4px;
  padding: 4px 8px;
  font-size: 13px;
  border: 1px solid #888;
  border-radius: 4px;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.2s;
}

.place-input-panel button:hover {
  background: #e6e6e6;
}


.place-input-panel #savePlaceBtn {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}

.place-input-panel #savePlaceBtn:hover {
  background: #45a049;
}

.place-input-panel #cancelPlaceBtn {
  background: #f44336;
  color: #fff;
  border-color: #f44336;
}

.place-input-panel #cancelPlaceBtn:hover {
  background: #d32f2f;
}
