:host {
  display: block;
}

.options-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.option-item {
  font-size: 0.875rem;
  display: inline-block;
  margin: 5px;
  padding: 0.5rem 1rem;
  color: var(--primary-black);
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.option-item:hover {
  background-color: #e0e0e0;
}
