.vot-locationiq,
.vot-geocoder {
  --vot-geocoder-border: rgba(15, 23, 42, 0.10);
  --vot-geocoder-bg: #fff;
  --vot-geocoder-radius: 18px;
  --vot-geocoder-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.vot-locationiq-panel {
  background: var(--vot-geocoder-bg);
  border: 1px solid var(--vot-geocoder-border);
  border-radius: var(--vot-geocoder-radius);
  box-shadow: var(--vot-geocoder-shadow);
  overflow: hidden;
}

.vot-locationiq-panel__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.vot-locationiq-panel__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.vot-locationiq-panel__body {
  padding: 1rem 1.25rem;
}

.vot-locationiq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  background: rgba(37, 99, 235, 0.08);
}

.vot-locationiq-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.vot-locationiq-status--ok::before,
.vot-locationiq-status--fallback::before,
.vot-locationiq-status--error::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.vot-locationiq-status--ok::before {
  background: #16a34a;
}

.vot-locationiq-status--fallback::before {
  background: #f59e0b;
}

.vot-locationiq-status--error::before {
  background: #dc2626;
}

.vot-locationiq-debug {
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  overflow-x: auto;
}




