body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, darkblue,cyan, lightblue, lightcyan);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#card {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  padding: 20px;
  border-radius: 15px;
  width: 320px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#search-input {
  width: 200px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 10px 0 0 10px;
  outline: none;
}

#search-button {
  background: #4a90e2;
  border: none;
  padding: 0 10px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}

#search-button img {
  display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.weather-icon {
  width: 100px;
  margin: 10px 0;
}

.temp {
  font-size: 40px;
  color: #333;
}

.city {
  font-size: 24px;
  margin-bottom: 10px;
  color: #555;
}

.details {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.col {
  display: flex;
  align-items: center;
  gap: 10px;
}

.col img {
  width: 30px;
}
