#accessibility-panel {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #0326f0;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: grab;
  }
  
  #accessibility-panel.open {
    height: auto;
    width: auto;
    padding: 10px;
    border-radius: 20px;
    background: #ffffff;
    cursor: move;
  }
  
  #accessibility-panel.open button {
    margin: 5px 0;
    width: 200px;
    text-align: left;
    background: #007BFF;
    color: white;
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
  }
  #accessibility-panel.open button:hover {
    background: #0056b3;
  }
  
  #access-btn {
    display: none;
  }
  #accessibility-panel img {
    width: 40px !important;      /* smaller width */
    height: 40px !important;     /* smaller height */
    object-fit: contain !important;
    cursor: pointer !important;
  }
  #access-content {
  margin-top: 10px;
}