﻿.weather-body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  text-align: center;
}

.weather-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.weather-card {
  background: white;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: inline-block;
}

.weather-time {
  font-weight: bold;
  margin-bottom: 10px;
}

.weather-icon {
  font-size: 30px;
  margin: 5px 0;
}

.weather-temp {
  font-size: 10px;
}

.weather-wind {
  font-size: 8px;
  color: gray;
}