#searchForm {
  position: relative;
  max-width: 600px;
  margin: 1rem auto;
}

#searchInput {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #1e1e1e;
  color: #fff;
  outline: none;
}

#searchInput:focus {
  border-color: #8c67ef;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  z-index: 10;
  max-height: 240px;
  overflow-y: auto;
  padding: 0;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#suggestions li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.2s ease;
}

#suggestions li:hover {
  background-color: #8c67ef;
  color: #fff;
}
/* Scrollbar styling */
#suggestions::-webkit-scrollbar {
  width: 10px;
}

#suggestions::-webkit-scrollbar-thumb {
  background-color: #8c67ef;
  border-radius: 8px;
}

#suggestions::-webkit-scrollbar-track {
  background-color: #2c2c2c;
  border-radius: 8px;
}

#suggestions li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.2s ease;
}

#suggestions li:hover {
  background-color: #8c67ef;
  color: #fff;
}