.threat-map-container {
  margin: 2rem auto;
  padding: 2rem;
  max-width: var(--max-width);
}

.threat-map-container h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.threat-map {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  height: 500px;
}

.map-container {
  position: relative;
  background: rgba(20, 27, 45, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.continent {
  fill: rgba(0, 229, 255, 0.1);
  stroke: var(--accent-color);
  stroke-width: 0.2;
}

.threat-point {
  fill: #ff4757;
  filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.7));
}

.threat-feed {
  background: rgba(20, 27, 45, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
}

.threat-feed h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.threat-list {
  height: calc(100% - 3rem);
  overflow-y: auto;
}

.threat-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.threat-time {
  color: var(--text-secondary);
}

.threat-location {
  color: var(--accent-color);
}

.threat-type {
  color: #ff4757;
}

/* Scrollbar styling */
.threat-list::-webkit-scrollbar {
  width: 6px;
}

.threat-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.threat-list::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.2);
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .threat-map {
    grid-template-columns: 1fr;
    height: auto;
  }

  .map-container {
    height: 300px;
  }

  .threat-feed {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .threat-map-container {
    padding: 1rem;
  }

  .map-container {
    height: 200px;
  }

  .threat-feed {
    height: 250px;
  }

  .threat-item {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
} 