﻿html, body {
    min-height: 100vh;
    max-height: 100vh;
    /*overflow: auto;*/
    flex-direction: column;
    display: flex;
}


.card {
    background-color: white;
}

/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 200px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: black; /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 0px;
}

.context {
    background-color: black;
    padding: 20px 0px 10px 0px;
}

.sidenav p {
    padding: 6px 6px 0px 12px;
    color: cadetblue;
}

/* The navigation menu links */
.sidenav a {
    padding: 3px 6px 3px 16px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    display: block;
}

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
        color: #f1f1f1;
    }

/* Style page content */
.main {
    /* margin-left: 200px; /* Same as the width of the sidebar */
    padding: 0px 10px;
    width: auto;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 14px;
    }

        .sidenav a {
            font-size: 12px;
        }
}

.sidebarbody {
    padding-top: 0;
}

.hr {
    padding: 2px 0px 2px 0px;
}

.pull-to-top {
    padding-top: 0px;
}

.not-set {
    background-color: darkgray;
}

.collapse-button {
    padding: 6px 0px 0px 0px;
    color: cadetblue;
}

.centreOnScreen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}