.chip-outlined_7f705c77 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin: auto;
  border-radius: 1rem;
  background-color: var(--frey-color-surface);
  color: var(--frey-color-text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--frey-color-border-muted);
  cursor: default;
  transition: background-color 0.3s;
}

.chip-default_641c6c1e {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin: auto;
  border-radius: 1rem;
  background-color: var(--frey-color-surface-subtle);
  color: var(--frey-color-text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: default;
  transition: background-color 0.3s;
}

.chip-default-clickable_79a6d4b4:hover {
  cursor: pointer;
  background-color: var(--frey-color-surface-subtle-hover);
}

.chip-outlined-clickable_6fe04947:hover {
  cursor: pointer;
  background-color: var(--frey-color-surface-subtle);
}

.chip-default-clickable_79a6d4b4:focus-visible,
.chip-outlined-clickable_6fe04947:focus-visible {
  outline: 2px solid var(--frey-focus-ring, #6366f1);
  outline-offset: 2px;
}

.chip-text_569c3392 {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
