/*
    All multi-page app IDs and classes
*/

/* Columns & rows */
.column-nav, .column-main-content, .column2 {
    float:left;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 30px;
    /*border: 2px solid black;*/
}

.column2 {
    width: 50%;
}

.row {
    width: 100%;
    display: flex;
    /*border: 2px solid rgb(76, 122, 174);*/
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.float-right {
    text-align: right;
    justify-content: right;
}

.float-left {
    text-align: left;
    justify-content: left;
}

/* Left menu */
.column-nav {
    width: 300px;
}

.column-main-content {
    width: calc(100% - 300px);
}

nav {

}
    
    nav ul {
        padding: 0;
    }

    nav ul li {
        list-style-type: none;
        margin-bottom: 10px;
    }

    nav ul li a {
        background-color: #EBEBEB;
        border: 0.5px solid rgb(194, 194, 194);
        border-radius: 10px;
        padding: 15px;
        box-sizing: border-box;
        text-decoration: none;
        color: black;
        text-align: center;
        display: inline-block;
        width: 100%;
    }