/* Weather Widget Styling */
#weather-widget {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 200px;
  border: 1px solid #eee;
}
.weather-icon img {
  width: 50px;
  height: 50px;
}
.weather-info {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.city {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.temp {
  font-size: 18px;
  color: #ff5722;
  font-weight: bold;
}
.desc {
  font-size: 11px;
  color: #777;
  text-transform: capitalize;
}
