.unterseiten-live-search {
  position: relative;
  max-width: 500px;
  margin: 1rem auto;
}

#unterseiten-search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.unterseiten-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  z-index: 999;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.unterseiten-search-results.hidden {
  display: none;
}

.result-item {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}

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

.no-results {
  padding: 0.75rem 1rem;
  color: #888;
  font-style: italic;
}

@media (max-width: 600px) {
  .unterseiten-live-search {
    width: 95%;
  }
}
