.pill-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 2px 3px;
  font-family: inherit;
  font-size: 11px;
  background: var(--panel-bg, #f5f3eb);
  border-radius: 999px;
  color: var(--fg, #111);
  border: 1px solid var(--border2, #d0cec0);
  gap: 0;
  height: 30px;
}

.pill-button-input {
  display: none;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

.pill-button-highlight {
  position: absolute;
  top: 2px;
  left: 3px;
  height: 26px;
  border-radius: 20px;
  background: #a7aaa6;
  transition: all 0.2s ease;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pill-button-selection {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s ease;
  user-select: none;
  white-space: nowrap;
  height: 26px;
  color: var(--text-subtle, #c9c7b3);
  font-weight: 500;
}

.pill-button-selection_active {
  color: var(--fg, #111);
  font-weight: 600;
}
