/* ===== REUSABLE AVATARS - APPLE-LIKE DARK THEME ===== */
.client-avatar-sm,
.profile-avatar-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--primary);
  border: 1px solid var(--primary-hover);
  color: var(--text-inverse);
  font-weight: 700;
  box-shadow: none;
}

.client-avatar-sm {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  font-size: 14px;
}

.profile-avatar-large {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  font-size: 48px;
}

.online-indicator-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: var(--radius-full);
  background: var(--success);
  box-shadow: none;
}
