
html {
    min-width: 98%;
    position: relative;
    height: 100%;
    font-size: medium;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    width: 98%;
    height: 97%;
    min-height: auto;
    color: #000;
    line-height: normal;
    background-color: lightblue;
    max-height: 100%;
    max-width: 100%;
}

h1 {
    font-size: x-large;
}

h2 {
    font-size: large;
}

#login-section {
    display: none;
    flex-direction: column;
    align-self: center;
    margin: auto;
    align-items: center;
    background: #FFFFFF;
    width: fit-content;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    padding: 2% 2%;
}

    #login-section p {
        text-align: center;
        align-items: center;
        margin: 1% 0;
    }

header {
    display: none;
    flex-wrap: nowrap;
    min-height: 58px;
    border-bottom: 1px solid #E9EDF3;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

#header_left {
    display: flex;
    align-items: center;
    margin-left: 1%;
}

    #header_left span a {
        font-size: 18px;
        font-weight: 600;
        margin-left: 9px;
        color: #000;
        text-decoration: none;
    }

    #header_title {
        display: flex;
        font-size: large;
        font-weight: bold;
    }

#header_right {
    display: flex;
    max-height: 100%;
    overflow-y: visible;
    margin: 0 1% 8px 1%;
}

    #header_user_button {
        height: 50px;
        width: 50px;
    }

    #user_menu {
        display: none;
        flex-direction: column;
        width: max-content;
    }

    #user_menu fluent-menu-item:first-child {
        height: 50px;
    }

footer {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 45px;
    padding: 10px;
    border-top: 1px solid #E9EDF3;
    color: #477BA1;
    font-size: small;
}

main {
    display: none;
    flex-direction: row;
    width: 100%;
    height: 100%;
    max-height: 88%;
    max-width: 100%;
}

#select-user {
    display: none;
    width: max-content;
}

#user-list {
    min-width: 350px;
}

#login-section {
    display: none;
}

#main-left {
    display: flex;
    height: 100%;
}

#main-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

    #content-centered {
        display: none;
        flex-direction: column;
        align-items: center;
        overflow: auto;
        max-width: 100%;
    }

    #content-aligned-left {
        display: none;
        flex-direction: column;
        align-self: flex-start;
        align-items: flex-start;
        overflow: auto;
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    #content-text {
        display: none;
        flex-direction: column;
        align-content: start;
        align-self: flex-start;
        align-items: flex-start;
        overflow: auto;
        max-height: 100%;
        max-width: 100%;
    }

    #content-text p,h1,h2,ul {
        max-width: 100%;
    }

    #content-text code {
        display: flex;
        background-color: #E9EDF3;
        max-width: 100%;
        flex-wrap: nowrap;
        overflow-x: scroll;
        width: fit-content;
    }

    #content-text img {
        display: flex;
    }

nav#navigation {
    display: flex;
    padding: 0%;
    width: 150px;
    min-width: max-content;
    background-color: rgb(190, 221, 231);
}

    nav#navigation ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    nav#navigation ul li a {
        display: block;
        color: #000;
        padding: 8px 32px;
        text-decoration: none;
        font-size: larger;
        font-weight: bold;
        width: 150px;
        height: 40px;
    }

    nav#navigation ul li a:hover {
        background-color: rgb(0, 133, 177);
        color: white;
    }

    #nav_home {
        display: none;
    }
    
    #nav_licmgmt {
        display: none;
    }

    nav#contents {
        margin-top: 0;
        padding: 0;
    }
    
        nav#contents ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            min-height: 100%;
        }
    
        nav#contents li {
            float: left;
            background-color: rgb(202, 223, 230);
            border: 2px solid;
            border-color:lightblue;
        }
    
        nav#contents li a {
            display: block;
            color: black;
            padding: 5px 5px;
            text-decoration: none;
            width: 95px;
            min-height: 45px;
        }
    
        nav#contents li a:hover {
            background-color: rgb(0, 133, 177);
            color: white;
            }
    
.image-paragraph {
    max-width: 10%;
    overflow-x: auto;
}

.image-inline {
    max-width: 80%;
    overflow-x: auto;
}

.image-float-right {
    float: right;
    max-width: 30%;
    margin: 2%;
}
