/* Suggestions Box */
#suggestionsContainer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}

#suggestionsContainer a {
  padding: 10px;
  text-decoration: none;
  color: var(--text-color);
}

#suggestionsContainer a:hover {
  background-color: #e9ecef;
}

/* Make suggestion container match the input width */
.search-wrapper {
  position: relative;
  width: 100%;
}
