.accessibility-widget {
    position: fixed;
    bottom: -320px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #000;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    transition: bottom 0.3s ease;
    z-index: 9999;
}
.accessibility-widget.open {
    bottom: 0;
}

.accessibility-toggle-btn {
/*    position: fixed;
    bottom: 0;
    right: 10px;
    /*background: #333;*/
    /*color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10000;
    border-radius: 8px 8px 0 0;*/
}

.accessibility-controls button {
    margin: 5px;
    padding: 6px 10px;
    font-size: 14px;
}

/* Grayscale */
.grayscale *:not(#accessibility-widget):not(#accessibility-widget *) {
    filter: grayscale(100%) !important;
}

/* High contrast */
#accessibility-content.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

#accessibility-content.high-contrast a {
    color: #0ff !important;
}

/* Highlight Links */
#accessibility-content a.highlight-links {
    background-color: yellow !important;
    color: red !important;
    font-weight: bold !important;
}
