.searchbar-container {
  position: relative;
  display: inline-block;
  width: 250px;
  z-index: 2000;
}

.searchbar {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.searchbar:focus {
  border-color: #999;
  box-shadow: 0 0 0 0.2rem rgba(150,150,150,0.3);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 300px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.search-results li {
  padding: 8px 10px;
  cursor: pointer;
}

.search-results li:hover {
  background-color: #f0f0f0;
}

.search-result-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #f5f5f5;
}

.result-name {
  font-weight: bold;
}

.result-path {
  font-size: 0.85em;
  color: #666;
}

.result-description {
  font-size: 0.8em;
  color: #888;
  margin-top: 2px;
}

.search-result-empty {
  padding: 8px 12px;
  color: #888;
  font-style: italic;
}