#searchbar {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}
#suggestionsBox {
  font-family: Arial, sans-serif;
}
.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.suggestion-item.selected {
  background-color: #e0e0e0;
}
.suggestion-item:hover {
  background-color: #f0f0f0;
}
.suggestion-left {
  display: flex;
  align-items: center;
}
.suggestion-text {
  margin-left: 8px;
}
.arrow-icon,
.delete-icon {
  margin-left: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.arrow-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.3px;
}
.delete-icon svg {
  width: 16px;
  height: 16px;
}
.history-icon svg {
  width: 16px;
  height: 16px;
  fill: #555;
  display: flex;
}
.search-icon svg {
  width: 16px;
  height: 16px;
  fill: #555;
  display: flex;
}
.title-history {
  font-weight: bold;
  padding: 10px 5px;
}