/* ── Auth additions — append these rules to qr-admin.css ─────────────── */

/* Sidebar footer: flex row so email + logout sit side by side */
.sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Truncate long email addresses */
.sidebar-username {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
}

/* Logout icon button */
.sidebar-logout-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted, #6b7280);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.sidebar-logout-btn:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}
