.header {
    background-color: navy;
    color: white;
    padding: 10px 20px;
    position: relative;
}

.gg-header-logo-text {
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
}

.gg-account-button-text, .gg-user-name-text {
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
}

.gg-admin-controls-text {
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    margin-left: 40px;
}

.gg-header-right-align {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.gg-logout-button {
    margin-left: 30px;
    color: red;
    cursor: pointer;
}

.nav-item {
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    margin-left: 20px;
    font-size: 1.4rem;
    cursor: pointer;
}

.nav-item:hover {
    color: rgb(150, 150, 150);
}

.mobile-header {
    display: none;
}

.mobile-header-displayed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background-color: white;
    z-index: 10000000;
}

.nav-item-close {
    color: darkred;
    font-weight: bold;
}

@media (max-width: 1000px) {
    .logo {
        display: none;
    }
    .gg-user-name-text {
        display: none;
    }
    .nav-item {
        display: none;
    }
    .gg-logout-button {
        font-size: 2rem;
    }
    .mobile-header {
        display: block;
        font-size: 2rem;
    }
    .mobile-header-displayed, .mobile-header-displayed .nav-item {
        display: block;
        text-align: center;
        display: block;
        padding: 30px 0;
    }
    .mobile-header-displayed .nav-item {
        border-bottom: 1px solid grey;
    }
    .mobile-header-displayed .nav-item:hover {
        text-decoration: underline;
    }
}