#map {
  height: 600px;
  margin-bottom: 20px;
}

.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.sidebar {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 8px;

  --traffic-hotspot-text-color: var(--text-main);

  color: var(--traffic-hotspot-text-color);
}

.chart-container {
  height: 300px;
  margin-bottom: 20px;
}

.stats {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.stat-card {
  padding: 15px;
  background: var(--bg-card);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  color: var(--traffic-hotspot-text-color);
}

#data-status {
  color: red;
  margin-bottom: 10px;
}

.loading {
  display: none;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  background: var(--bg-header);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.3s ease;
}

#load-time {
  font-size: 0.9em;
  color: var(--traffic-hotspot-text-color);
  margin-top: 4px;
}

.a1a2-note {
  font-size: 0.9em;
  color: var(--traffic-hotspot-text-color);
  margin-top: 10px;
}
