.root {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  width: fit-content;
  padding: 8px 12px;
  user-select: none;
  gap: 4px;

  &__hover {
    cursor: pointer;
  }
}

.close {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}