/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to top right, #89f7fe, #66a6ff);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

/* Glassmorphic container */
.container {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

h1 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #fff;
}

/* Search box styling */
.search-box {
  display: flex;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 1rem;
}

.search-box button {
  padding: 10px;
  background-color: #ffffffaa;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.search-box button:hover {
  background-color: #ffffffdd;
}

/* Weather card styling */
.weather-card img {
  width: 80px;
  height: 80px;
  margin: 10px 0;
}

.weather-card p {
  margin: 5px 0;
  font-size: 1.1rem;
}
