#accessibility-panel {
    position: fixed;
    bottom: 10px;
    right: -210px; /* Hidden state */
    width: 200px;
    background: #fff;
    padding: 10px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 9999;
    border-radius: 5px 0 0 5px;
}

#accessibility-panel.open {
    right: 0; /* Slide in */
}

#accessibility-toggle {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 40px;
    height: 40px;
    color: #0076b9;
    font-size: 28px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
}

.accessibility-buttons {
    margin-top: 10px;
}

#accessibility-panel button {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #f9f9f9;
    transition: background 0.2s, border-color 0.2s;
}

#accessibility-panel button.active {
    background: #007bff;
    color: white;
    border-color: #0056b3;
}

body.a11y-increase-font {
    
} 
body.a11y-decrease-font {
    
} 
body.a11y-grayscale {
    filter: grayscale(100%);
    background-image: none !important;
} 
body.a11y-contrast {
    background-color: #000 !important;
    color: #fff !important;
    background-image: none !important;
}
body.a11y-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
}
body.a11y-contrast a {
    color: #0ff !important; /* Bright cyan for links */
    text-decoration: underline;
}
body.a11y-invert {
    background-color: #000 !important;
    color: #ffff00 !important;
    background-image: none !important;
}
body.a11y-invert * {
    background-color: #000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
} 
body.a11y-light-bg {
    background-color: #fff !important;
    color: #000!important;
    background-image: none !important;
}
body.a11y-light-bg * {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
}
body.a11y-underline a {
    text-decoration: underline;
}
body.a11y-legible * {
    font-family: Verdana, Arial, Helvetica, sans-serif !important;
}
body.a11y-resize-font-140 {
    font-size: 140% !important;
}
body.a11y-resize-font-160 {
    font-size: 160% !important;
}
body.a11y-resize-font-180 {
    font-size: 180% !important;
}
body.a11y-resize-font-200 {
    font-size: 200% !important;
}