/* Color variables */
:root {
  --bg-color: #f6edc5;
  /* Light beige/yellow background color */
  --primary-text: #2f5d2a;
  /* Dark green */
  --secondary-text: #5f6f52;
  /* Muted green */
  --divider-color: #a3b18a;
  /* Light green for dividers */
}

/* Global styles */
body {
  margin: 0;
  padding: 24px;
  background-color: var(--bg-color);
  color: var(--primary-text);
  font-family: 'Poppins', sans-serif;
}

/* Current weather styles */
.current-main {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.75;
  margin-bottom: 12px;
  color: var(--secondary-text);
}

.current-main .divider {
  margin: 0 4px;
}

#sunrise,
#sunset {
  color: var(--secondary-text);
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 4px 0;
}

/* Weather icon styles */
#weather-icon {
  width: 64px;
  height: 64px;
}

/* Headline styles */
.headline {
  color: var(--primary-text);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 10px;
  max-width: 320px;
}

.headline span {
  display: inline-block;
}

/* Forecast list */
#forecast {
  margin-top: 24px;
}

.forecast-day {
  color: var(--primary-text);
  margin-bottom: 12px;
}

.forecast-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 4px;
}

.separator {
  border-bottom: 1px dotted var(--divider-color);
  margin-bottom: 12px;
}