.projector-groups .title-row > div[role="group"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 1px 0 #00000008;
}

.projector-groups .profile-badge {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mute);
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.projector-groups .profile-badge[aria-pressed="true"] {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 1px 3px #006b6b33;
}

.projector-groups .profile-badge[aria-pressed="true"][data-grouping-mode="spread"] {
  background: var(--orange);
  box-shadow: 0 1px 3px #ff660033;
}

.projector-groups .profile-badge:not([aria-pressed="true"]):hover {
  background: var(--teal-soft);
  color: var(--teal);
}

.projector-groups .profile-badge:focus-visible {
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .projector-groups .title-row > div[role="group"] {
    max-width: 100%;
    overflow-x: auto;
  }

  .projector-groups .profile-badge {
    white-space: nowrap;
  }
}
