/* ── Radar Filter-Tabs ── */
.radar-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.radar-tab-btn {
  padding: 5px 14px;
  border-radius: 16px;
  border: 1.5px solid var(--whic-border);
  background: #fff;
  color: var(--whic-text);
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all .15s;
}
.radar-tab-btn.active {
  background: var(--whic-green);
  border-color: var(--whic-green);
  color: #fff;
  font-weight: 700;
}
.radar-tab-btn:hover:not(.active) {
  border-color: var(--whic-green);
  color: var(--whic-green);
}
.radar-edit-btn {
  margin-left: auto;
  padding: 5px 14px;
  border-radius: 16px;
  border: 1.5px solid var(--whic-green);
  background: #fff;
  color: var(--whic-green);
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.radar-edit-btn:hover {
  background: var(--whic-green);
  color: #fff;
}

/* ── Radar Editor Overlay ── */
.radar-editor-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.radar-editor-overlay.show { display: flex; }

.radar-editor-header {
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 8px;
}
.radar-editor-header h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
  font-family: 'Lato', sans-serif;
  flex: 1;
  text-align: center;
}
.radar-editor-nav {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--whic-radius);
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}
.radar-editor-nav:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.radar-editor-nav:active { transform: scale(0.92); }
.radar-editor-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color .15s;
  flex-shrink: 0;
}
.radar-editor-close:hover { color: #fff; }

.radar-editor-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.radar-editor-hint {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  max-width: 420px;
  line-height: 1.5;
}

.radar-editor-footer { margin-top: 16px; }

/* ── Editor SVG Elements ── */
.radar-drag-point {
  cursor: grab;
  fill: var(--whic-green);
  stroke: #fff;
  stroke-width: 2;
}
.radar-drag-point:active { cursor: grabbing; }
.radar-area-editor {
  fill: rgba(0, 103, 32, 0.25);
  stroke: var(--whic-green);
  stroke-width: 1.5;
}
.radar-grid-editor { stroke: rgba(255, 255, 255, 0.12); fill: none; stroke-width: 0.5; }
.radar-axis-editor { stroke: rgba(255, 255, 255, 0.18); stroke-width: 0.5; }
