.sb-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  margin-top: 16px;
  padding: 0 12px 0 10px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid #333;
  background-color: #21212114;
  background-image: linear-gradient(#0000001c, #0000001c);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sb-social-proof[hidden] {
  display: none !important;
}

.sb-social-proof__avatars {
  display: inline-flex;
  align-items: center;
  flex: none;
  min-height: 24px;
}

.sb-social-proof__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #121212;
  margin-left: -7px;
  object-fit: cover;
  background: #8a8f98;
  flex: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.sb-social-proof__avatar:first-child {
  margin-left: 0;
}

.sb-social-proof__text {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #ededec;
  font-family: Geist, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.sb-social-proof__live {
  display: block;
  width: 4px;
  height: 4px;
  margin-right: 2px;
  margin-left: 4px;
  border-radius: 50%;
  background: #22c55f;
  flex: none;
  animation: sb-social-proof-live-pulse 2.8s ease-in-out infinite;
}

@keyframes sb-social-proof-live-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 95, 0.45);
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 0 2px rgba(34, 197, 95, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-social-proof__live {
    animation: none;
  }
}

html[data-theme="light"] .sb-social-proof {
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  background-color: rgba(249, 248, 247, 0.86);
  background-image: none;
  border-color: #e5e5e5;
  box-shadow: 0 8px 32px rgba(9, 12, 18, 0.06);
}

html[data-theme="light"] .sb-social-proof__avatar {
  border-color: #f9f8f7;
}

html[data-theme="light"] .sb-social-proof__text {
  color: #171717;
}
