/* Виджет */
.a11y-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

/* Кнопка-глаз */
.a11y-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #888;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Панель */
.a11y-panel {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 220px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
}

/* Активное состояние */
.a11y-panel.active {
    display: block;
}

/* Заголовок панели */
.a11y-panel h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

/* Группы и кнопки */
.a11y-group {
    margin-bottom: 15px;
}

.a11y-group p {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.a11y-group button {
    display: inline-block;
    padding: 6px 10px;
    margin: 3px 4px 3px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.a11y-group button:hover {
    background: #e0e0e0;
}

.a11y-group button:active {
    transform: scale(0.95);
}

/* Кнопки изменения размера текста */
#font-increase,
#font-reset,
#font-decrease {
    font-size: 16px;
    min-width: 40px;
}

/* Кнопки Контраста и режима Ч/Б */
#contrast-toggle,
#grayscale-toggle {
    width: 100%;
    text-align: center;
}

.active-btn {
    background: #000;
    color: #fff;
    border-color: #000;
}