/* Highlight matched search text */
.highlight,
mark {
  background-color: yellow;
 font-weight: bold;
  padding: 0 2px;
}

/* Autocomplete suggestion list */
.autosuggestion-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  border: 1px solid #ccc;
  background: #fff;
  max-height: 250px;
  overflow-y: auto;
  border-radius: 4px;
}

.autosuggestion-list li {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.autosuggestion-list li:hover {
  background-color: #f1f1f1;
}

/* No results message */
/* .no-results-msg {
  margin-top: 10px;
  padding: 10px 12px;
  color: #a00;
  background: #fbeaea;
  border: 1px solid #e5b3b3;
  border-radius: 4px;
  font-size: 14px;
}
 */
/* Clear button inside search */
.clear-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: none;
  z-index: 2;
}

/* Ensure search-box is relative for button positioning */
.search-box {
  position: relative;
}
.error-message {
  color: red;
}