#site-content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#accessibility-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
}

#accessibility-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 20px 0 0 20px;
    background: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 20px;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

#accessibility-panel {
    display: none;
    position: absolute;
    right: 45px;
    top: -120%;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    width: 180px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
}

.acc-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: none;
}

.btn-default {
    background: #5c636a;
    color: #ffffff;
}

.btn-grayscale {
    background: #212529;
    color: #ffffff;
}

.btn-protanopia {
    background: #e2e675;
    color: #000000;
}


#site-content.color-grayscale {
    filter: grayscale(100%) !important;
}

#site-content.color-protanopia {
    filter: url('#protanopia-filter') !important;
}
