/* CSS for the Bootsrap 4 navbar */

/* -------------------------------------------------------------------------------
   --------------------------------------- Navbar/Header -------------------------
   ------------------------------------------------------------------------------- */
#appTitleContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    height: 60px;
    color: white;
    text-align: center;
}

#appTitleContainer a:hover {
    text-decoration: none;
}

.navbar {
    height: 75px;
    border-bottom-style: solid;
    border-bottom-color: var(--accent-color);
    border-bottom-width: 3px;
    background-color: var(--primary-color);
}

.dropdown-menu {
    background-color: var(--primary-color);
    line-height: 2.2em;
    width: 750px;
}

.nav-menu {
    background-color: var(--primary-color);
}

.nav-menu li {
    width: 100%;
    list-style-type: none;
    color: white;
    font-size: 1.2em;
}

.nav-menu li a {
    color: white;
    font-size: 1.0em;
}

.nav-menu li:hover a {
    color: #262626;
    text-decoration: none;
    background-color: #F5F5F5;
}

/* Don't show Boostrap's mobile hamburger */
.navbar-toggle {
    display: none;
}

.nav > li > a:hover, .nav > li > a:focus {
    outline: none;
}

#menu-burger.nav-link {
    outline: none;
}

/* -------------------------------------------------------------------------------
   -------------------------------- Shared between dropdowns ---------------------
   ------------------------------------------------------------------------------- */

.menu-separator {
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    margin-top: 0.6em;
    margin-bottom: 0.6em;
}

.bring-to-front {
    z-index: 5000;
}

.bring-to-front-menu {
    z-index: 10000;
}

/* -------------------------------------------------------------------------------
   ---------------------------------- Menu Dropdown ----------------------------
   ------------------------------------------------------------------------------- */

#menu-burger {
    color: white;
    padding-top: 30px;
    background-color: var(--primary-color);
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}

#menu-burger:hover {
    color: var(--accent-color);
}

#menu-burger:focus {
    color: var(--accent-color);
}

.menu-item {
    display: block;
}

/* -------------------------------------------------------------------------------
   ---------------------------------- Logout Dropdown ----------------------------
   ------------------------------------------------------------------------------- */

#navSecurityWrapper {
    color: white;
    padding-right: 5px;
    position: absolute;
    right: 10px;
    top: 40px;
}

#idpreferences {
    padding: 10px;
    padding-top: 2px;
    color: white;
}

#logout-dropdown {
    background-color: var(--primary-color);
    color: white;
    position: absolute;
    top: 32px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    width: 250px;
}

.logout-text-container {
    height: 2.6em;
}

.logout-text-container:hover {
    background-color: #F5F5F5;
}

.logout-text-container:hover .logout-text {
    color: #262626;
    text-decoration: none;
}

.logout-text-container:focus .logout-text {
    color: #262626;
    text-decoration: none;
}


.logout-dropdown-item, .logout-text {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
}

#login-name {
    font-size: 1.1em;
}

.logout-text {
    display: block;
    font-size: 1.2em;
    color: white;
}