/* ------------------------
  Body & App Container
------------------------ */
body {
  font-family: Arial, sans-serif;
  background: #1e293b;  /* old fixed color */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  transition: background 0.5s; /* smooth color change */
}

#app {
  text-align: center;
  background: #334155;
  padding: 30px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  outline: 1px solid silver;
}

/* ------------------------
  Input & Buttons
------------------------ */
input {
  padding: 8px;
  width: 70%;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

button {
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #3b82f6;
  color: white;
  margin-left: 5px;
}

button:hover {
  background-color: #2563eb;
}

/* ------------------------
  Weather Result
------------------------ */
#weatherResult img {
  width: 80px;
  margin: 10px 0;
}

#weatherResult h2 {
  margin: 5px 0;
}

#weatherResult p {
  margin: 2px 0;
}