.auth-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.auth-user-chip img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.auth-user-chip[hidden],
.auth-logout[hidden],
.auth-login[hidden] {
  display: none;
}

.auth-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.auth-toast.error {
  color: var(--rose-strong);
}

.auth-toast[hidden] {
  display: none;
}
