<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#weather-display {
  border: 1px solid #000;
  padding: 8px 10px;
  border-radius: 8px;
  min-height: 80px;
  font-weight: bold;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 11px;
  text-align: center;
}

#weather-display img {
  filter: grayscale(100%) brightness(0) invert(0);
  width: 28px; /* smaller icons */
  height: 28px;
  display: block;
  margin: 0 auto 6px auto;
}

#weather-display .city-name {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
}

#weather-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  color: #000;
}

#weather-data p {
  margin: 0;
  white-space: nowrap;
}
</pre></body></html>