.wpw-weather-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 20px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  margin: 0 auto;
}

.wpw-weather-header {
  text-align: center;
  margin-bottom: 20px;
}

.wpw-city-name {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #ffffff;
}

.wpw-weather-description {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  text-transform: capitalize;
}

.wpw-weather-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

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

.wpw-temperature {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.wpw-temp-value {
  font-size: 56px;
  font-weight: 700;
}

.wpw-temp-unit {
  font-size: 24px;
  font-weight: 400;
  margin-top: 8px;
  margin-left: 4px;
}

.wpw-weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

.wpw-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wpw-detail-label {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 500;
}

.wpw-detail-value {
  font-size: 16px;
  font-weight: 600;
}

.wpw-error {
  background: #fee;
  color: #c33;
  padding: 10px;
  border-radius: 4px;
  border-left: 4px solid #c33;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .wpw-weather-container {
    max-width: 100%;
  }

  .wpw-temp-value {
    font-size: 48px;
  }

  .wpw-weather-details {
    grid-template-columns: 1fr;
  }
}
