
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-display: swap;
    font-size: 1.0rem;
    font-weight: 400;
    color: white;
}

/* header */

header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 80px;
    background: linear-gradient(to right, var(--blue) 0%, var(--navy) 20%, var(--darkBlue) 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

header .content.logo {
    flex: 0 0 auto;
    margin-left: 20px;
    width: auto;
    height: 100%;
}

header img {
    aspect-ratio: 1 / 1;
    width: 60px;
    height: auto;
    object-fit: cover;
}

header .content.account {
    flex: 0 0 auto;
    margin-right: 20px;
    width: auto;
}

#account-button {
    margin: 0;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex: 1;
}

nav .button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    justify-content: flex-end;
    margin-right: 20px;
    font-size: 2rem;
    color: white;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    z-index: 100;
    flex-direction: column;
    padding: 15px;
}

#mobile-menu h3 {
    width: 100%;
    color: var(--tan);
    font-size: 1rem;
    margin: 5px 0;
    text-align: center;
    text-transform: uppercase;
}

#mobile-menu a, .mobile-button, .mobile-logout {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
}

#mobile-menu a:hover, .mobile-button:hover, .mobile-logout:hover {
    background: var(--navy);
}

.mobile-menu-open #mobile-menu {
    display: flex;
}

#mobile-menu .bottom {
    margin-top: 50px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 100%;
    }

    #account-button {
        display: none;
    }
}