 .sidebar{
   flex-direction: column;
   background-color: var(--primary-color);
   position: fixed;
   z-index: 999;
   min-width: 70px;
   width: auto;
   padding: 20px 15px;
   padding: 10px 10px;
   left: -100%;
   top: 104px;
   bottom: 10px;
   border-radius: 8px;
   border: none;
   box-shadow: 0 0 5px var(--box-shadow-main);
   align-items: center;
   transition: all 0.5s ease;
   overflow-y: auto;
  }
  .sidebar.active{
    left: 10px;
  }
 .sidebar-box{
   color: var(--secondary-color);
   height: fit-content;
   max-height: 100px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 20px 5px;
   justify-content: center;
   align-items: center;
   border-radius: 8px;
   margin: 16px 4px;
   box-sizing: border-box;
   border: 1px solid transparent;
   transition: all 0.2s ease;
 }
 .sidebar-box img{
   height: auto;
 }
 .sidebar-box:hover{
   border: 1px solid #0a0a0a;
   box-shadow: 3.5px 3.5px 5px var(--box-shadow-hover);
   transform: scale(1.06);
 }
 .sidebar-box:active{
   transform: scale(1);
   box-shadow: none;
 }
 .icon-container:hover img, .sidebar-box:hover div {
    transform: scale(1.1);
    filter: brightness(1.3);
    transition: all 0.2s ease;
  }
 .sidebar-box div{
   font-size: 20px;
   font-weight: 600;
   transition: all 0.2s ease;
 }
 .icon-container{
   height: 28%;
   width: 28%;
 }
 .icon-container img{
   transition: all 0.2s ease;
 }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 998;
    opacity: 1;
    visibility: hidden;
  }
  
  .overlay.active {
    visibility: visible;
  }