.weather-widget {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.weather-header {
  text-align: center;
  margin-bottom: 1rem;
}

.weather-city {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.weather-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.weather-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.weather-temp {
  font-size: 3rem;
  font-weight: 300;
  margin-left: 1rem;
}

.weather-description {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.weather-details {
  display: flex;
  justify-content: space-around;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.weather-detail {
  text-align: center;
}

.detail-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.detail-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
}