#search-suggestions {
  z-index: 10;
}
#search-suggestions:after {
  font-family: "Font Awesome 6 Free";
  content: "\f002";
  color: #b4b4b4;
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
#search-suggestions input[name=keywords] {
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  outline: none;
}
#search-suggestions #search-suggestions-results {
  width: 100%;
}
#search-suggestions #search-suggestions-results:has(> .result) {
  background-color: #1e1e1e;
  padding: 1rem;
}
#search-suggestions #search-suggestions-results .result {
  margin-bottom: 0.5rem;
}
#search-suggestions #search-suggestions-results .result:last-of-type {
  margin-bottom: 0;
}
#search-suggestions #search-suggestions-results .result a {
  font-weight: bold;
}