.user-chip {
  min-width: 0;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.user-chip-actions {
  position: static;
  z-index: 8200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin: 0;
}

.user-chip-icon-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--lf-color-text, #0f172a);
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.user-chip-icon-btn:hover {
  background: #eef4ff;
  border-color: rgba(37, 99, 235, 0.24);
  color: #2563eb;
}

.user-chip-icon-btn svg {
  width: 19px;
  height: 19px;
}

.user-chip-profile-link {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  overflow: visible;
}

.user-chip-profile-anchor,
.user-chip-profile-link > a {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.user-avatar {
  width: 34px;
  min-width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 62%, #a855f7 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.user-avatar::before,
.user-avatar::after,
.user-avatar .status-dot {
  display: none;
  content: none;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.user-name {
  color: var(--lf-color-text, #0f172a);
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-chip-inline-logout {
  width: 34px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
  color: var(--lf-color-primary, #2563eb);
  text-decoration: none;
}

.user-chip-inline-logout-icon {
  width: 28px;
  height: 28px;
  display: block;
}
