body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

.card {
  background-color: #ffffff;
  padding: 35px 45px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  display: inline-block;
  min-width: 350px;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.02);
}

h2 {
  margin-bottom: 10px;
  color: #222;
}

p {
  margin-top: 0;
  color: #555;
}

.input-group {
  margin: 15px 0;
}

#cityInput {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 200px;
}

#showWeatherBtn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 5px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

#showWeatherBtn:hover {
  background-color: #218838;
}

.result {
  margin-top: 18px;
  font-size: 16px;
  color: #333;
}
