/* Minimal Bulma-friendly styling for typeahead.js */

.twitter-typeahead {
  width: 100%;
}

.twitter-typeahead input,
.twitter-typeahead .tt-input,
.twitter-typeahead .tt-hint {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.tt-menu {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.25rem 0;
  background: var(--ps-surface, #ffffff);
  border: 1px solid var(--ps-border, #dbdbdb);
  border-radius: 0.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.tt-suggestion {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--ps-text, #111827);
}

.tt-suggestion:hover,
.tt-suggestion.tt-cursor {
  background: var(--ps-surface-2, #f5f7fb);
}

.tt-highlight {
  font-weight: 700;
}

/* Hint/input colors should track theme */
.twitter-typeahead .tt-hint {
  color: var(--ps-muted, #9ca3af);
}

