.access-logout-floating {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid hsl(217 91% 60% / 0.28);
  border-radius: 999px;
  background: hsl(220 35% 8% / 0.88);
  box-shadow: 0 18px 44px hsl(220 45% 5% / 0.28);
  color: hsl(210 40% 98%);
  font: 700 0.86rem/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  backdrop-filter: blur(16px);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.access-logout-floating:hover {
  border-color: hsl(217 91% 60% / 0.48);
  background: hsl(220 35% 10% / 0.94);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .access-logout-floating {
    right: 1.25rem;
    top: 0.92rem;
    bottom: auto;
  }
}
