/* 天气查询卡片美化样式 */
.weather-card {
  max-width: 420px;
  margin: 40px auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  text-align: center;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}
.weather-card h1 {
  font-size: 1.8em;
  margin-bottom: 18px;
  color: #2a3b4d;
}
.weather-card input[type="text"] {
  width: 65%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #bbb;
  border-radius: 4px;
  margin-bottom: 12px;
}
.weather-card button {
  padding: 10px 18px;
  font-size: 1em;
  border: none;
  background: #4CAF50;
  color: #fff;
  border-radius: 4px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.weather-card button:hover {
  background: #388e3c;
}
.weather-card #locationName {
  margin: 12px 0 18px 0;
  color: #555;
}
.weather-card > div {
  margin-bottom: 10px;
}
.weather-card #temp-c, .weather-card #temp-f {
  font-size: 1.1em;
  margin: 4px 0;
}
.weather-card #temp-chart {
  margin: 0 auto 12px auto;
} 

.occultation-card {
  background: #181c24;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  padding: 32px 24px 24px 24px;
  margin: 32px auto;
  max-width: 1100px;
  color: #fff;
}
.occultation-card h1 {
  margin-top: 0;
  font-size: 2em;
  color: #00ffff;
  letter-spacing: 2px;
}