/* Bundled loading / empty placeholders (no Lottie runtime — keeps IPA/AAB ~30 MB). */
.avc-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  color: #9fb3c8;
  font: 600 14px/1.3 Inter, -apple-system, sans-serif;
}
.avc-loading-spin {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(159, 179, 200, 0.25);
  border-top-color: #7dd3fc;
  border-radius: 50%;
  animation: avc-spin 0.8s linear infinite;
}
@keyframes avc-spin {
  to { transform: rotate(360deg); }
}
.avc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 16px;
  color: #8aa0b5;
  text-align: center;
}
.avc-empty img,
.avc-empty .avc-empty-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  opacity: 0.85;
}
