/* Search Desktop Wrapper */
.search-leiste .input-group {
  height: 50px;
}

#searchInput {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Dropdown Box */
#searchDropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  width: 100%;
  max-height: 440px;
  overflow-y: auto;
  display: none;
  z-index: 3000;
}

/* Section Titel */
.search-section-title {
  font-size: 0.85rem;
  color: #999;
  font-weight: 600;
  padding: 10px 16px 6px;
  text-transform: uppercase;
  border-bottom: 1px solid #f1f1f1;
  background: #fafafa;
}

/* Einzelne Items */
.search-result-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f3f3;
  text-decoration: none;
  transition: background 0.2s ease;
}

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

.search-result-item i {
  font-size: 1.25rem;
  color: #777;
  margin-top: 2px;
}

/* Titel & Subtitle */
.search-result-title {
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
}

.search-result-sub {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

/* "Alle anzeigen" */
.search-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: underline;
  transition: background .2s ease;
}

.search-view-all:hover {
  background: #f8f9fa;
}

/* No Results */
.search-no-results {
  padding: 14px;
  font-size: 0.9rem;
  color: #999;
}

/* Mobile Tweaks */
@media (max-width: 991px) {
  #searchDropdown {
    max-height: 380px;
  }
}
