* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

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

body {
  background: linear-gradient(135deg, #4a90e2, #0f4c75);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 400px;
  padding: 25px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#appTitle {
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

#cityInput {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #0077ff; /* changed to match theme */
  font-size: 16px;
}

#searchBtn {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background: #0077ff;
  color: white;
  cursor: pointer;
  transition: .2s;
}

#searchBtn:hover {
  background: #005cd1;
}

.weather-card {
  background: #e1f0ff; /* lighter blue for contrast */
  padding: 20px;
  border-radius: 15px;
  color: #0f4c75; /* dark text for readability */
}

#cityName {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

#weatherType {
  color: #0f4c75;
  margin-bottom: 15px;
  font-size: 18px;
}

.details p {
  margin: 5px 0;
  font-size: 18px;
  color: #0f4c75;
}
