@layer components {
  .filter-option-applied {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--theme-border-secondary);
    border-radius: 0.5rem;
    background-color: var(--theme-surface-secondary);
    color: var(--theme-text-primary);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    transition: background-color 0.15s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.15s cubic-bezier(0.19, 1, 0.22, 1);
  }
  @media (prefers-reduced-motion: reduce) {
    .filter-option-applied {
      transition: none;
    }
  }
  .filter-option-applied.hover, .filter-option-applied:hover {
    background-color: var(--theme-surface-secondary);
    border-color: var(--theme-border-primary);
  }
  .filter-option-applied.focus, .filter-option-applied:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.125rem var(--theme-focus-primary);
    background-color: var(--theme-surface-secondary);
    border-color: var(--theme-border-primary);
  }
  .filter-option-applied__icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
  }
  .filter-option-applied__label {
    white-space: nowrap;
  }
}