/* === WP Accessibility Toolkit Styles === */

#a11y-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7, 51, 75, .7) 0, #000);
    color: #000;
    padding: 16px;
    border-radius: 0;
    border-bottom: 4px solid #368ec4;
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    max-width: 100%;
    width: 100%;
}

#a11y-panel.a11y-hidden {
  display: none;
}
#a11y-panel .a11y-controls {
    display: flex;
    gap: 20px;
}

#a11y-panel button {
    display: block;
    width: 139px;
    height: 110px;
    margin-bottom: 0;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #fff;
    color: #000022;
    background: #fff;
}
#a11y-close {
  position: absolute;
  top: -19px;
  right: 0;
  border: none;
  font-size: 14px !important;
  font-weight: bold;
  cursor: pointer;
  width: 30px !important;
  height: 30px !important;
  background: #000022;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff;
}

/* === Gelişmiş Erişilebilirlik Efektleri === */



/* Yüksek kontrast tüm öğelere uygula */
body.a11y-contrast, body.a11y-contrast * {
  background-color: #000 !important;
  color: #FFD700 !important;
  border-color: #FFD700 !important;
}
body.a11y-contrast a, body.a11y-contrast a * {
  color: #00FFFF !important;
}



/* Mobil uyum */
@media (max-width: 768px) {
  #a11y-panel {
    bottom: 10px;
    right: 10px;
    max-width: 90vw;
  }
}
