#accessibility-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #0078d7;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99999;
}

.accessibility-bar {
    position: fixed;
    top: 10px;
    right: 60px; /* so it appears next to the toggle */
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    display: none;
    z-index: 99999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 8px;
    white-space: nowrap; /* keep buttons in one row */
}

    .accessibility-bar button {
        display: block;
        margin: 5px 0;
        width: 100%;
    }


.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

.ab-invert {
    filter: invert(100%) !important;
}

.grayscale {
    filter: grayscale(100%);
}

.highlight-links a {
    background: yellow;
    color: black;
}

.readable-font {
    font-family: Arial, sans-serif !important;
}

.dyslexia-font {
    font-family: 'OpenDyslexic', Arial, sans-serif !important;
}
