/* Simple styling for Tokyo Weather */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f0f8ff;
  color: #333;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin-bottom: 0.5rem;
}

#weather {
  margin-top: 1rem;
  text-align: center;
}

button {
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 1rem;
  cursor: pointer;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 4px;
}
button:hover {
  background: #005fa3;
}
