/* Wrapper */
.pp-map-wrap { position: relative; }
.pp-map-svg { width: 100%; max-width: 1200px; margin: 0 auto; }
.pp-map-svg svg { width: 100%; height: auto; display: block; }

/* === Pin styling === */
.map-svg-full .map-pin {
  transition: transform 0.2s ease, filter 0.2s ease;
  pointer-events: all;
  transform-box: fill-box;
  transform-origin: center;
}

.map-svg-full .map-pin:hover {
  transform: scale(1.05);
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(0,0,0,.1));
}

/* === Tooltip styling === */
.svg-tooltip {
  position: fixed;
  z-index: 9999;
  background: #003C71;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-family: inherit, sans-serif;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  display: none;
}

/* Pinmode panel */
.pp-pinmode-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 320px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  border-radius: 10px;
  padding: 12px;
  z-index: 9998;
  font-family: inherit;
}

.pp-pinmode-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.pp-pinmode-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.pp-pinmode-row label {
  font-size: 12px;
  color: rgba(0,0,0,.65);
}

.pp-pinmode-row input {
  width: 100%;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.15);
  font-size: 12px;
}

.pp-btn {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.pp-btn:hover { filter: drop-shadow(0 2px 8px rgba(0,0,0,.08)); }

.pp-pinmode-help {
  font-size: 12px;
  color: rgba(0,0,0,.7);
  margin-top: 8px;
  line-height: 1.35;
}
