
/* styling for screen width less than 800 */
@media screen and (max-width: 800px) {
    .sidebar-nav  {
        font-size: 4vw;
        margin: 0;
        padding: 0;
        width: 100%;
        background-color: #f1f1f1;
        position: relative;
        height: auto;
        overflow: auto;
    }
    
    .sidebar-nav a {
        display: block;
        color: black;
        padding: 16px;
        text-decoration: none;
        text-align: center;
        float: none;
    }
    
    .sidebar-nav a.active {
        background-color: #04AA6D;
        color: white;
    }
    
    .sidebar-nav a:hover:not(.active) {
        background-color: #555;
        color: white;
    }
    
    .noshow {
        display: none;
    }

    #logout-form {
        display: block;
        color: black;
        padding: 16px;
        text-decoration: none;
        text-align: center;
        float: none;
    }
    #logout-form button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    #logout-form button.active {
        background-color: #04AA6D;
        color: white;
    }

    #logout-form button:hover:not(.active) {
        background-color: #555;
        color: white;
    }
    /* styling for user detail page to make options across the page, as opposed to down the page */
    .sidebar-nav2 {
        display: inline-flex;
        flex-direction: row;
        justify-content: space-evenly;
        font-size: 4vw;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        background-color: #f1f1f1;
        height: auto;
        overflow: auto;
    }

    .sidebar-nav2 a {
        display: block;
        color: black;
        padding: 16px;
        text-decoration: none;
        text-align: center;
        float: none;
    }

    .sidebar-nav2 a.active {
        background-color: #04AA6D;
        color: white;
    }

    .sidebar-nav2 a:hover:not(.active) {
        background-color: #555;
        color: white;
    }
}
