body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  transition: background-image 0.6s ease-in-out;
  color: #fff;
}

.weather-app {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  max-width: 500px;
  margin: 80px auto;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.search-input {
  flex: 1;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.search-button {
  background-color: #242025;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-button:hover {
  background-color: #1c327b;
}

.current-city {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
}

.current-details {
  font-size: 15px;
  color: #eee;
}

.current-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.current-temperature {
  font-size: 64px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.current-temperature-icon {
  font-size: 48px;
  margin-right: 10px;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: white;
}

footer a {
  color: white;
  text-decoration: underline; /* Optional: keep link styling clear */
}
