ui/debugallperkspanel.razor.scss
DebugAllPerksPanel {
    position: absolute;
    color: white;
    //width: 142px;
    left: 20%;
    right: 20%;
    bottom: 5%;
    top: 5%;
    //top: 10px;
    font-family: Nunito;
    font-weight: 800;
    //align-content: center;
    //justify-content: center;
    //align-items: center;
    z-index: 998;
    pointer-events: all;
    background-color: #000000bb;

    .itemlist {
        flex-wrap: wrap;
        gap: 5px;
        flex-direction: row;
        height: 100%;
        width: 100%;
        //align-content: flex-start;
        //justify-content: center;
        padding: 2px;
        overflow-x: hidden;
        overflow-y: scroll;

        &:hover {
            opacity: 1;
        }
    }
}