/* Accessibility controls (now hidden, accessed through settings menu) */
.accessibility-controls {
    position: fixed;
    top: -9999px; /* Position off-screen */
    left: -9999px;
    opacity: 0;
    pointer-events: none; /* Prevent any accidental interaction */
}

.theme-toggle,
.dyslexia-toggle {
    /* Keep the buttons functional but visually hidden */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}