#menuBtn {
    background: none;
    border: 0;
    font-size: 22px;
  }
  
  #sideMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0,0,0,0.15);
    padding: 16px;
    z-index: 9999;
  }
  
  #sideMenu.active, #closeMenu.active {
    transform: translateX(0);
  }

  #closeMenu {
    cursor: pointer;
    color: #333;
  }
  
  .menu-top {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-size: 20px;
  }
  
  .menu-top a {
    color: #333;
  }
  
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    cursor: pointer;
  }

  .menu-list li{
    padding: 16px;
    display: flex;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
  }

  .menu-list li img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }

  
  
  
  
  