body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #dbeafe, #f5f7fb);
  color: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 20px;
}

h1 {
  margin-bottom: 10px;
}

.subtitle {
  color: #64748b;
  margin-bottom: 20px;
}

.search {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.search input {
  flex: 1;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.search button {
  padding: 10px 15px;
  border: none;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.status {
  color: #64748b;
  min-height: 20px;
  margin-bottom: 10px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

#weatherIcon {
  width: 80px;
  height: 80px;
}
