.open-accessibility-widget {
    position: fixed;
    bottom: 90px !important;
    right: 25px !important;    /* Move para a direita */
    left: auto !important;     /* Remove o posicionamento antigo */
    z-index: 99999;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-accessibility-icon {
    font-size: 28px;
    color: #007BFF;
}

.open-accessibility-menu {
    position: fixed;
    bottom: 155px;
    right: 25px !important;     /* move o menu para a direita */
    left: auto !important;      /* desativa o lado esquerdo */
    width: 260px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
    z-index: 99998;
    display: none;
    font-family: Arial, sans-serif;
}

.open-accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.open-accessibility-close {
    font-size: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    line-height: 20px;
}

.open-accessibility-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.open-accessibility-menu ul li {
    padding: 8px 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.open-accessibility-menu ul li:hover {
    background: #f0f0f0;
}

/* High Contrast */
html.open-accessibility-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* Inverted Colors */
html.open-accessibility-invert {
    filter: invert(100%) !important;
    -webkit-filter: invert(100%) !important;
}

/* Grayscale */
html.open-accessibility-grayscale {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
}

/* Underline Links */
html.open-accessibility-links a {
    text-decoration: underline !important;
}

/* Big Cursor */
html.open-accessibility-bigcursor {
    cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABRklEQVRYR+2WvQ3CMBRGj9MNDoAuCEi0aKBslZx2E2rDoIjuAD1gChX2NDSSSXqoQZnIcXtNCmieYwgd0CQpZK0s8Ajt/Hu+N+2c/5+ytY1/6Yr2vNhbbX6YsJhBKt3vnDnN/SfXlBx/6CkXbkqVKgf/mBlC9ZwTe74MkRUYw35vj0IadB1iKsFcEYTmya4A1NVuMcZV8C4D4ew3Efr2E1VlzDqgW8sELpAoCYXMlcNdQ4KJIp4jOSAmhpN6wX+ZspGDZCBoBPXaAG2wE8xmPKzW0AxkYlCYwH14r2raXIiQunlslqY5T2r8j04YfGLwRoTSesFiAmyFDXL9uBeb5GsyhQOdE31E4n4t4DccNI0YvrFica8FWHZcizxgxYkWwaRM42gnikIYjneih/7gToYtL6vhfVqlhK/SXxPxq8np5xpoAAAAASUVORK5CYII="), auto !important;
}

/* Reading Guide */
html.open-accessibility-readingguide body::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    height: 120px;
    top: calc(var(--mouseY) - 60px);
    background: rgba(0,0,0,.15);
    pointer-events: none;
    z-index: 99997;
}
