.accessibility-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  display: flex;
  gap: 0.5rem;
  padding: 2px 0; /* espacio superior e inferior solicitado */
  background: transparent; /* ✅ fondo 100% transparente */
  justify-content: start;
  font-family: sans-serif;
  pointer-events: none; /* Evita bloquear clics en el logo debajo */
}

.accessibility-toolbar button {
  pointer-events: auto; /* Reactiva interacción solo en los botones */
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.accessibility-toolbar button:hover {
  background: #d4d4d4;
}