body {
  font-family: Helvetica, sans-serif;
  font-size: 11px;
}

.suggestionsBox {
  position: relative;
  top: 8px;
  width: 100%;
  max-width: 320px;
  background-color: #f3f3f3;
  border-radius: 10px;
  border: 2px solid #b0b0b0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  margin: auto;
}

.suggestionList {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.suggestionList li {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #ddd;
}

.suggestionList li:hover {
  background-color: #e6e6e6;
}

.suggestionList li:last-child {
  border-bottom: none;
}

/* Eliminamos la flecha */
.suggestionsBox::before {
  display: none;
}
