.sug-typeahead-container {
  position: relative;
  width: 100%;
  padding: .375rem .75rem;
  max-width: 500px;
  margin: 0 auto;
}

.sug-search-input {
  width: 100%;
  padding: 1px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: .375rem;
  transition: all 0.3s ease;
}

.sug-search-input:focus {
  outline: none;
  border-color: #42b983;
  box-shadow: 0 0 0 3px rgba(66, 185, 131, 0.2);
}

.sug-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: white;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sug-suggestions li {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.sug-suggestions li:hover,
.sug-suggestions li.active {
  background-color: #f5f5f5;
}

.sug-highlight {
  color: #42b983;
  font-weight: 600;
}

.sug-no-results {
  padding: 12px 16px;
  color: #888;
  text-align: center;
}
