body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

#clock {
  position: relative;
  transform: rotate(90deg);
  z-index: -1;
}

.hand {
  fill: black;
  stroke: black;
}

.hour-number {
  font-size: 18px;
  font-weight: bold;
  text-anchor: middle;
}

.temp-text {
  font-size: 12px;
  text-anchor: middle;
  color: #007bff; /* Change color for better visibility */
}

#input-container {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center horizontally */
  padding: 20px; /* Increase padding for better spacing */
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}

#location-info {
  text-align: center;
  margin-bottom: 10px;
}

.input-field {
  width: 100%; /* Expand input to full width */
  margin: 10px 0; /* Add vertical spacing around input */
  padding: 5px;
}

#updateButton {
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#city {
  margin-top: 10px;
  font-weight: bold;
}
