body {
    background-color: #f5f5f5;
    image-rendering: smooth;
    padding-bottom: 64px;
}

header a:hover {
    text-decoration: none;
}

article {
    transition: margin-left .25s, padding-left .25s, padding-right .25s;
    padding: 5rem 1.5rem 0 1.5rem;
    height: calc(100% - 5rem);
}

.navbar-left {
    line-height: 0;
    margin: 0;
    padding: 0;
}

.nav-drawer-btn {
    margin: 0;
    padding: 0;
    line-height: 0;
    color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.25s;
}

.nav-drawer-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.navbar {
    box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.075);
    margin-bottom: 10px;
    background: #fdfdfd !important;
}

.navbar .logo-title {
    transition: padding-left 0.25s;
}

.drawer {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1030; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.25s; /* 0.25 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.drawer .drawer-link {
    padding: 16px 16px;
    text-decoration: none;
    color: #6d6d6d;
    display: block;
    transition: 0.1s;
    font-size: 0.9rem;
    white-space: nowrap !important;
}

/* When you mouse over the navigation links, change their color */
.drawer .drawer-link:hover {
    background-color: steelblue;
    color: white;
}

/* Position and style the close button (top right corner) */
.drawer .close-drawer-btn {
    position: absolute;
    text-decoration: none;
    top: 0;
    right: 8px;
    font-size: 1.75rem;
}

/* Position and style the close button (top right corner) */
.drawer .close-drawer-btn:hover {
    cursor: pointer;
}

/* 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) {
    .drawer a {
        font-size: 10px;
    }
}

.navbar-right {
    height: calc(45px + 1rem);
    margin: -0.5rem -1rem -0.5rem 0;
}

.navbar-right .logout-wrapper {
    background-color: #ff000000;
    border-left: 1px solid #00000012;
    transition: background-color 0.25s, color 0.25s;
    padding: 0 1rem;
}

.navbar-right .logout-wrapper span {
    color: rgba(255, 0, 0, 0.7);
}

.navbar-right .logout-wrapper:hover {
    background-color: rgba(255, 0, 0, 0.7);
    cursor: pointer;
}

.navbar-right .logout-wrapper:hover span {
    color: white;
}

.logo-title-wrapper {
    font-family: "Arial", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, sans-serif;
    letter-spacing: -1px !important;
    font-weight: bolder;
    padding-top: 6px;
    cursor: default;
}