/* Custom styles for this explainer */
canvas {
    touch-action: none;
}

/* Toggle Button Visibility */
/* Show button by default (mobile/tablet/small desktop) */
.glossary-toggle-btn {
    display: flex;
}

/* Hide button ONLY when sidebar is visible (xl screens, 1280px+) */
/* Since we fixed the layout to accommodate the sidebar on xl screens, we can hide the button on xl+ */
@media (min-width: 1280px) {
    .glossary-toggle-btn {
        display: none !important;
    }
}
