html,
body {
    height: 100%;
    grid-template-areas: "header_section" "Site-content_section" "footer_section";
    grid-template-rows: 100px 100% 35px;
    margin: 0px;
}

#dashboard-footer {
    flex-shrink: unset;
    grid-area: footer_section;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 30%);
    background: #fff !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    min-height: 60px;
}