.accessibility-icons {
    display: flex;
    gap: 12px;
  }
  
  /* wspólne */
  .a11y-icon {
    width: 25px;
    height: 25px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
  }
  
  /* KONTRAST - pół białe pół czarne */
  .a11y-contrast-btn {
    background: linear-gradient(to right, #fff 50%, #000 50%);
    border: 4px solid #000;
  }
  
  /* A+ */
  .a11y-font-btn {
    background: #000;
    color: #fff;
  }
  
  /* EFEKTY */
  
/* TRYB WYSOKIEGO KONTRASTU */
html.a11y-contrast {
    background: #000 !important;
  }
  
  html.a11y-contrast body {
    background: #000 !important;
    color: #fff !important;
  }
  
  /* Nagłówki */
  html.a11y-contrast h1,
  html.a11y-contrast h2,
  html.a11y-contrast h3,
  html.a11y-contrast h4,
  html.a11y-contrast h5,
  html.a11y-contrast h6 {
    color: #00ffff !important; /* cyjan */
  }
  
  /* Linki */
  html.a11y-contrast a {
    color: #ffff00 !important; /* żółty */
    text-decoration: underline !important;
  }
  
  /* Menu */
  html.a11y-contrast nav,
  html.a11y-contrast header,
  html.a11y-contrast footer,
  html.a11y-contrast section,
  html.a11y-contrast div {
    background-color: #000 !important;
  }
  
  /* Border */
  html.a11y-contrast * {
    border-color: #fff !important;
  }
  
  /* Przyciski */
  html.a11y-contrast button,
  html.a11y-contrast .btn,
  html.a11y-contrast input {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #fff !important;
  }
  
  
  /* powiększenie */
  html {
    font-size: var(--a11y-font-scale, 100%);
  }

  @media (max-width: 568px) {
    .a11y-icon {
        width: 20px;
        height: 20px;
    }
  }
  