.weather-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  overflow: hidden;
}

/* LEFT FIXED AREA */
.weather-main {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.weather-icon {
  font-size: 28px;
}

.weather-text small {
  font-size: 12px;
  color: #666;
  display: block;
}

.weather-text strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.weather-city {
  font-size: 13px;
  color: #1a73e8;
}

/* ARROW */
.weather-toggle {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: 6px;
}

/* RIGHT SLIDE – GOOGLE STYLE */
.weather-forecast {
  display: flex;
  gap: 18px;
  margin-left: 0;
  max-width: 0;
  opacity: 0;
  transition: max-width .35s ease, opacity .25s ease, margin .35s ease;
}

/* OPEN STATE */
.weather-box.open .weather-forecast {
  max-width: 320px;
  opacity: 1;
  margin-left: 18px;
}

/* FORECAST ITEM */
.forecast-day {
  text-align: center;
  font-size: 13px;
}

.forecast-day span {
  display: block;
}
