#lucho-weather-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.lucho-weather-box {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 360px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.lucho-weather-box h3 { font-size: 1.5rem; margin-bottom: 10px; }
.lucho-weather-box p { margin: 6px 0; font-size: 1rem; }

.lucho-weather-loading,
.lucho-weather-error { font-size: 1rem; color: #444; text-align: center; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .lucho-weather-box { padding: 15px; font-size: 0.9rem; }
  .lucho-weather-box h3 { font-size: 1.2rem; }
}
