/* Default: left on the left, right on the right */
body.normal-layout .left-column {
    order: 0;
}

body.normal-layout .right-column {
    order: 1;
}

/* Swapped layout: right column first then left column*/
body.swapped-layout .left-column {
    order: 1;
}

body.swapped-layout .right-column {
    order: 0;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.left-column {
    display: flex;
    flex-direction: column;
    /* height: calc(100vh - 120px); */
    height: 100%;
    overflow-y: auto;
}

.right-column {
    /* display: flex; */
    flex-direction: column;
    height: 100%;
    /* full height of screen */
    overflow-y: auto;
}