/**
 * Botón de cierre de sesión: mismo aspecto en hub, Freepik y CapCut.
 * Requiere :root con --border y --accent-2 (definidos en hub.css y en los playbooks).
 */
.auth-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid var(--border, #25305a);
  background: #111933;
  color: var(--accent-2, #00e0b8);
  border-radius: 8px;
  padding: 0.28rem 0.65rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.auth-logout-btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.auth-logout-btn:focus-visible {
  outline: 2px solid var(--accent-2, #00e0b8);
  outline-offset: 2px;
}
