/* Кнопка включения */
#accessibility-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000;
  font-size: 14px;
}

/* Панель */
#accessibility-panel {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 16px;
  z-index: 1001;
  max-width: 300px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#accessibility-panel button {
  display: block;
  width: 100%;
  margin: 6px 0;
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background: #f0f0f0;
  transition: background 0.2s;
}

#accessibility-panel button:hover {
  background: #ddd;
}

/* Версия для слабовидящих */
.accessibility-font-large {
  font-size: 1.3em !important;
}

.accessibility-font-small {
  font-size: 0.85em !important;
}

.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

.yellow-black {
  background: #000 !important;
  color: #ff0 !important;
}

.blue-light {
  background: #e6f0ff !important;
  color: #003366 !important;
}

.accessibility-letter-spacing {
  letter-spacing: 0.12em !important;
}

.accessibility-line-height {
  line-height: 1.8 !important;
}
