/* ===== Iran Map Dashboard Styles ===== */

/* Weather panel */
.weather-list {
  max-height: 280px;
  overflow-y: auto;
}

.weather-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}

.weather-item:hover {
  background: rgba(0, 240, 255, 0.05);
}

.weather-item.selected {
  background: rgba(0, 255, 157, 0.08);
  border-left: 2px solid var(--accent-green);
}

.weather-city {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.weather-emoji {
  font-size: 16px;
}

.weather-data {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.weather-temp {
  color: var(--accent-cyan);
  font-weight: bold;
}

.weather-wind {
  color: var(--text-muted);
  font-size: 10px;
}

.weather-bar {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.weather-bar-fill {
  height: 100%;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: width 0.5s;
}

/* Indicator selector */
.indicator-list {
  max-height: 300px;
  overflow-y: auto;
}

.indicator-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}

.indicator-item:hover {
  background: rgba(0, 240, 255, 0.05);
}

.indicator-item.selected {
  background: rgba(0, 255, 157, 0.08);
  border-left: 2px solid var(--accent-green);
}

.indicator-name {
  font-size: 11px;
  color: var(--text-main);
  flex: 1;
}

.indicator-value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-cyan);
  text-align: right;
  white-space: nowrap;
}

.indicator-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
}

/* Stats readout */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.stat-item {
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #fff;
  margin-top: 2px;
}

/* Chart container */
.chart-container {
  min-height: 160px;
  margin-top: 10px;
}

/* Map city labels */
.city-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--text-muted);
  pointer-events: none;
}

.city-label.selected {
  fill: var(--accent-green);
  font-weight: bold;
}
