* { box-sizing: border-box; }

body {
  font-family: system-ui, sans-serif;
  max-width: 480px;
  margin: 2rem auto;
  padding: 0 1rem;
}
img {
    display: block;
  margin: auto;
  width: 50%;
}

h1 { font-size: 2rem; 
    text-align: center;}

.input-group {
  position: relative;
  margin-bottom: 1rem;
}

#current-time-btn {
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #555;
}

input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
  z-index: 10;
}

#suggestions:empty { display: none; }

#suggestions li {
  padding: 0.75rem;
  cursor: pointer;
}

#suggestions li:hover {
  background: #f0f0f0;
}

button {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover { background: #0052a3; }

#results {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 6px;
}
