/* Position the widget */
#accessibility-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#accessibility-icon {
    font-size: 24px;
    background-color: #0078d4;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

#accessibility-menu {
    display: none;
    margin-top: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    width: 200px;
}

#accessibility-menu button {
    display: block;
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#accessibility-menu button:hover {
    background-color: #005bb5;
}
