#accessibility-tools {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10000;
}

#accessibility-tools button {
  font-size: 16px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  background: #007acc;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

#accessibility-tools button:hover {
  background: #005fa3;
}

/* Mobile (zmiana pozycji i układu) */
@media (max-width: 768px) {
  #accessibility-tools {
    flex-direction: row;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    border: none;
    justify-content: space-around;
    background: #007acc;
  }

  #accessibility-tools button {
    flex: 1;
    margin: 0;
    border-radius: 0;
    background: #007acc;
    font-size: 14px;
    padding: 10px;
  }

  #accessibility-tools button:hover {
    background: #005fa3;
  }
}



body.high-contrast,
body.high-contrast * {
  background-color: black !important;
  color: yellow !important;
  border-color: yellow !important;
}

body.high-contrast a {
  color: cyan !important;
}


body.high-contrast button {
  background-color: #444 !important;
  color: #FFD700 !important;
  border: 1px solid #FFD700 !important;
}



body.font-large * {
  font-size: 32px !important;
}
