* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(to bottom right, #74ebd5, #9face6);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main app container styled as card */
.app-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 400px;
  width: 90%;
  margin: auto;
  margin-top: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.3s ease;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

/* Search box styles */
.search-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.search-box input {
  flex: 1;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  transition: 0.2s;
}

.search-box input:focus {
  border-color: #2196f3;
}

.search-box button {
  padding: 12px 20px;
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-box button:hover {
  background-color: #0b7dda;
}

/* Weather info result */
.weather-result {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* Fixed footer */
.footer {
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 15px 10px;
  background-color: #f1f1f1;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer strong {
  color: #2196f3;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .search-box {
    flex-direction: column;
  }

  .search-box input,
  .search-box button {
    width: 100%;
  }

  h1 {
    font-size: 22px;
  }

  .app-container {
    margin-top: 30px;
  }
}

