/* Reset dasar */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  color: #333;
}

.container {
  text-align: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.input-group {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.input-group input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: 70%;
}

.input-group button {
  padding: 10px;
  font-size: 16px;
  border: none;
  background: #66a6ff;
  color: white;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.input-group button:hover {
  background: #549dff;
}

#weather {
  margin-top: 20px;
}

.hidden {
  display: none;
}

#weather h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

#weather p {
  font-size: 16px;
  margin: 5px 0;
}

#weather img {
  margin-top: 10px;
  width: 50px;
  height: 50px;
}
