.app-menu{
    position: fixed;
    left:0px;
    top:26px;
    height: calc(100% - 26px);
    width: 100%;
    background: #222222;
    z-index: 999999999;
}
.app-menu-app-name {
margin-top: 8px;
font-size: 14px;
color: white;
text-align: center;

}
.app-menu-container {
    position: fixed;    
    left: 120px;
    width: calc(100% - 110px);
    height: calc(100% - 246px);
    overflow-x: hidden;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 10 columns with equal width */
    gap: 10px; /* Optional: space between items */
    justify-content: center;
    align-content: center; /* Center the grid items vertically */
}

.app-menu-container-wallpaper{
    position: fixed;
    top: 98px;
    left: calc(50% - 40px);
    height: 90px;
    width: 160px;
    box-shadow: 0px 0px 10px #220022;
}

.app-menu-app {
    width: 144px;
    height: 170px;
    margin: 3px;
    border-radius: 10px;
}

.app-menu-app:hover{
    background: #ffffff33;
    transition-duration: 0.2s;
}

.app-menu-app-image {
    width: 128px;
    height: 128px;
    transform: translate(8px,8px);
}