.weather-widget {
 /*
  width: 260px;
  border: 2px solid black;
  border-radius: 12px;
  */
  padding: 14px;
  background: white;
  font-family: "Courier New", monospace;
}

.weather-title {
  font-family: Helvetica, Arial, "Prata", serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
}

.weather-line {
  border-top: 1px solid black;
  margin: 10px 0;
}

.weather-temp {
  font-family: "Prata", serif;
  font-size: 58px;
  font-weight: normal;
  font-variant-numeric: lining-nums;
}

.weather-small {
  font-size: 14px;
  margin-top: 4px;
}

.weather-updated {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 10px;
}

.weather-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: start;
  column-gap: 16px;
}

#weather-icon {
  width: 110px;
  height: 110px;
  justify-self: end;
  margin-top: 0px;
}

#weather-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.unit {
  font-size: 0.7em;
  margin-left: 4px;
}

#weather-forecast {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.weather-forecast {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.forecast-icon {
  width: 28px;
  height: 28px;
}

.forecast-icon svg {
  width: 100%;
  height: 100%;
}
