.high-contrast {
  background: black !important;
  color: yellow !important;
}

.dark {
  background: #121212 !important;
  color: #f2f2f2 !important;
}

.accessibility-panel.open {
  display: block;
}


 /* אזור נגישות */
    .accessibility-panel {
      position: fixed;
      top: 100px;
      left: 20px;
      background-color: white;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
    }
    
    .accessibility-panel.show {
      display: block;
    }
    
    .accessibility-btn {
      position: fixed;
      top: 20px;
      left: 20px;
      background-color: #198754;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      z-index: 1001;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
