.search-container {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
}

#searchInput {
  width: 100%;
  padding: 10px 100px 10px 15px;
  border: 1px solid #8B7355;
  border-radius: 4px;
}

.search-clear {
  display: none;
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #8B7355;
}

#searchControls {
  display: none;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  gap: 4px;
}

#searchResults {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: #FFFACD;
  border: 1px solid #8B7355;
  z-index: 1500;
  /* Über den Tabs, unter dem Header */
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-result {
  padding: 8px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 13px;
}

.search-highlight {
  background: #ffeb3b !important;
  color: black !important;
  font-weight: bold;
  border-bottom: 1px solid red;
}