/* WEATHER: weather panel widget */
#weather-panel {
  display: flex;
  flex-direction: column;
}

.panel-header-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.panel-header-row .label {
  flex: 1;
  margin-bottom: 0;
}

#weather-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Main row: icon + temp */
.weather-main {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.weather-icon {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.25));
}

.weather-temp {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
  line-height: 1;
}

.weather-desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 5px;
}

.weather-location {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
}

/* Stats row */
.weather-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 12px;
  text-align: center;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 3px;
}

/* 7-day forecast strip */
.weather-forecast {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.forecast-day {
  flex: 1;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}

.forecast-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.forecast-icon {
  font-size: 1.15rem;
  line-height: 1;
  margin: 4px 0;
}

.forecast-max {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
}
