    .sidebar{
      background-color: white;
      position: fixed;
      left: 0;
      top: 70px;
      bottom: 0;
      width: 80px;
      z-index: 200;
    }
    .sidebar-box{
      height:74px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      transition: background-color 0.15s;
    }
    .sidebar-box:hover{
      background-color: #e5e5e5;
      cursor: pointer;
    }
    
    .sidebar-box img{
      height: 25px;
    }
    .sidebar-box div{
      font-weight: 500;
      font-size: 10px;
    }

  
