
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: white;
    z-index: 1;
    border-bottom: 1px solid #DDDCDC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    padding: 0px 24px;
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 24px;
}

a.bp-logo, a.bp-logo:hover {
    text-decoration: none;
}


.bp-logo img {
    height: 32px;
}

.menu-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    height: 100%;
    color: #33537a;
}

.nav-items {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-items a {
    cursor: pointer;
    font-weight: 600;
    color: #33537a;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 8px;
}

.nav-items a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    background-color: white;
    border-radius: 4px;
    border: 2px solid #33537a;
    color: #33537a;
    width: 50px;
    height: 45px;
}

.user-badge {
    height: 100%;
    display: flex;
    align-items: center;
}

.user-badge,
.user-badge a,
.user-badge a:hover {
    height: 100%;
    font-weight: 600;
    color: #33537a;
}

.user-badge a {
    display: flex;
    align-items: center;
}

.user-badge i {
    margin-right: 12px;
}

.user-badge a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .menu-items {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px;
        padding: 24px;
        animation: fadeSlideInAnimation ease 200ms;
    }
    .menu-items:not(.show) {
        display: none;
    }
    .nav-items {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }
    .nav-items a {
        display: block;
        width: 100%;
        padding: 8px 0;
        height: auto;
    }
    .user-badge, .user-badge a {
        height: auto;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .bp-logo img {
        height: 28px;
    }
    nav {
        padding: 0px 18px;
        height: 60px;
    }
    .menu-items {
        top: 60px;
    }

    .logo-container {
        margin-right: 12px;
    }
}

@media (max-width: 350px) {
    nav {
        padding: 0px 12px;
    }
}

