/**
 * Admin logout floating action button (bottom-right on all pages when admin is logged in).
 */
.admin-logout-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary, #f29318);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.admin-logout-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.admin-logout-fab__icon {
  flex-shrink: 0;
}
