div.statistics-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: grid;
    grid-template-columns: 15% auto 15%;
    grid-template-rows: auto;
    overflow: hidden;
    grid-template-areas: "left-sidebar center-container .";
}

div.dashboard-content {
    grid-area: center-container;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
}