﻿/*Anonymous*/
.grid-container {
    display: grid;
    height: 100vh;
    grid-template-rows: 85px auto 90px;
    grid-template-areas: "header" "body" "footer";
}

.grid-header {
    grid-area: header;
}

.grid-body {
    grid-area: body;
}

.grid-footer {
    grid-area: footer;
}
.grid-menu {
    grid-area: menu;
}

.grid-body.centered {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/*after login - layout new*/

.grid-main-container {
    display: grid;
    height: 100vh;
    grid-template-rows: 85px auto 90px;
    grid-template-areas: "header" "mbody" "footer";
    row-gap: 40px;
}

.left-menu-container {
    width: 260px;
}
.grid-main-body {
    grid-area: mbody;
    display: flex;
    flex-direction: column;
}
.grid-main-body-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}
