:root {
    --bgColor: white;
    --headerBarTextColor: #203532;
    --headerBgColor: #d6d6d6;
    --navBarHeight: 50px;
    --sideBarWidth: 0px;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    background-color: var(--bgColor);
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
    margin-right: 0;
    margin: auto;
}

.home-list {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.left-bar {
    background-color: #d6d6d6;
    height: 100vh;
    min-width: var(--sideBarWidth);
    max-width: var(--sideBarWidth);
    padding: 0;
    margin: 0;
}

.main-content {
    background-color: var(--bgColor);
    width: 100vw;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    border: 0;
}


.navbar {
    /* top: 0; */
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    background-color: var(--headerBgColor);
    /* width: 100vw; */
    z-index: 1000;
    justify-content: space-between;
    display: flex;
}


.navbar li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
}

.navbar ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    margin: 0;
    display: flex;
    gap: calc(1vw + 5px);
    height: var(--navBarHeight);
    align-items: center;
}

.nav-button {
    font-size: 20px;
}

.header-button {
    color: var(--headerBarTextColor);
    text-decoration: none;
}

.header-button:hover {
    color: red;
}


.home-button {
    font-size: 20px;
    white-space: nowrap;
    font-weight: bold;
    text-decoration: underline;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}


/* The side navigation menu */
.sidenav {
    height: calc(100% - var(--navBarHeight));
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Stay on top */
    top: var(--navBarHeight);
    /* Stay at the top */
    left: 0;
    background-color: #111;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}