.typeahead-wrapper {
  position: relative;
  width: 100%;
}

.typeahead-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 250px !important;
  max-width: 100% !important;
}

.typeahead-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.typeahead-item {
  padding: 8px;
  cursor: pointer;
}

.typeahead-item:hover {
  background-color: #f5f5f5;
}

.typeahead-loading {
  text-align: center;
  padding: 8px;
  color: #666;
}
