* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fafafa;
  color: #222;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  color: #666;
}

.weather {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  text-align: left;
}

.weather h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.weather-status {
  font-size: 0.9rem;
}

.weather-current {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-current .temp {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
}

.weather-current .meta {
  font-size: 0.85rem;
}

.weather-days {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.weather-days li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  min-width: 4rem;
}

.weather-days .day {
  font-weight: 600;
}

.weather-days .range {
  color: #666;
}
