﻿/* White background when hamburger menu is expanded */
.navbar-collapse.show {
    background-color: white;
}

/* Navbar container */
.navbar {
    position: relative;
    background-color: #f7f8fc;
    border-bottom: solid 3px #004aad;
    /*margin-bottom: 40px;*/ /* adds spacing below navbar */
    align-items: center;
}

    /* Proper selector for nav items */
    .navbar .navbar-nav {
        display: flex;
        align-items: flex-end;
    }

    /* Nav links */
    .navbar .nav-link {
        color: black;
        padding: 14px 16px;
        font-size: 17px;
        text-decoration: none;
    }

/* Username */
.nav-user-name .nav-link,
.nav-user-name p {
    margin-bottom: 10px;
    padding-bottom: 0;
    font-size: 25px;
    color: black;
}

/* Logo/brand */
.navbar-brand {
    font-size: 30px;
    margin-left: 30px;
    display: flex;
    align-items: flex-end;
}

/* Optional dropdown color */
.dropdown-toggle {
    color: #424b59;
}

