.radar-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  height: auto;
  min-height: 420px;
  margin: 0;
}

.radar-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 31, 138, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 31, 138, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.radar-bg {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: float 8s ease-in-out infinite;
}

.radar-bg::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 45%, rgba(109, 40, 217, 0.06) 65%, transparent 75%);
  pointer-events: none;
}

.radar-rings,
.radar-rings::before,
.radar-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(90, 31, 138, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-rings {
  width: 380px;
  height: 380px;
  border-color: rgba(90, 31, 138, 0.14);
}

.radar-rings::before {
  width: 285px;
  height: 285px;
}

.radar-rings::after {
  width: 190px;
  height: 190px;
  border-color: rgba(90, 31, 138, 0.22);
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 310deg, rgba(90, 31, 138, 0.1) 340deg, rgba(200, 134, 10, 0.2) 360deg);
  animation: radar-sweep 5s linear infinite;
}

#radar-blips {
  position: absolute;
  inset: 0;
}

.radar-blip {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: blip-appear 0.5s ease both;
  cursor: pointer;
}

.radar-blip::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid currentColor;
  animation: pulse-ring 2.5s ease-out infinite;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
}

.portal-table th {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding: 9px 12px;
  text-align: left;
}

.portal-table td {
  font-size: 0.78rem;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.portal-table tr:hover {
  background: rgba(109, 40, 217, 0.05);
}

.portal-tooltip {
  position: absolute;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  pointer-events: none;
  z-index: 100;
}
