.auth-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line, #dbe5f0);
  border-radius: 999px;
  background: var(--surface, #fff);
  color: var(--text, #172033);
  min-height: 40px;
  padding: 8px 12px;
  font: 800 13px/1.2 Inter, "Segoe UI", Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 52, 91, .08);
}

.auth-chip small {
  display: block;
  color: var(--muted, #657084);
  font-weight: 750;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-chip .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c9d4e2;
}

.auth-chip.signed .dot { background: #16a36c; }

.auth-signout {
  cursor: pointer;
}

.auth-signout .dot {
  background: #ef7d54;
}

.auth-floating {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
}

.admin-chip {
  border-color: color-mix(in srgb, var(--green, #16865f) 45%, var(--line, #dbe5f0));
}

body.auth-guest [data-auth-only] {
  display: none !important;
}

@media (max-width: 680px) {
  .auth-chip {
    padding: 8px 10px;
    max-width: 180px;
  }
}
