/* style.css */

body {
  display: flex;
  justify-content: center;
  align-items: center; /* vertical + horizontal center */
  height: 100vh;
  font-family: sans-serif;
  background: #1e1e1e;
  color: #fff;
  flex-direction: column;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center; /* keep input centered */
  width: 100%;
}

input {
  padding: 12px 16px;
  font-size: 1.5rem;
  width: 400px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.hint {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.suggestions {
  margin-top: 4px;
  width: 400px;
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  max-height: 200px;
  display: none;
}

.suggestion {
  padding: 8px 12px;
  cursor: pointer;
}

.suggestion.selected {
  background: #444;
}