* { box-sizing: border-box; font-family: 'Century Gothic', sans-serif; }
body { margin: 0; background: #eef4f9; }
#mapa { width: 100vw; height: 100vh; position: relative; background: #fff; overflow: hidden; }

.zona {
  position: absolute;
  border: 1px solid #89a4b9;
  background-color: rgba(108, 174, 224, 0.3);
  cursor: move;
  resize: both;
  overflow: hidden;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease-in-out;
}
.square  { border-radius: 0; }
.rounded { border-radius: 12px; }
.circle  { border-radius: 50%; }

.etiqueta {
  position: absolute;
  background: #ffffffcc;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
  font-weight: bold;
  top: -25px; left: 5px;
}

.menu-contextual {
  position: absolute;
  width: 220px;
  background: #ffffff;
  border: 1px solid #c2d4e0;
  padding: 12px;
  border-radius: 10px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-contextual input, .menu-contextual select, .menu-contextual button {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccddea;
  border-radius: 5px;
}

.menu-contextual button {
  background-color: #3c87d4;
  color: white;
  font-weight: bold;
}

.hidden { display: none !important; }
.lead { font-size: 1.1em; font-weight: bold; text-align: center; color: #33557d; }