.top-nav{
    position: fixed;
    top: 0;
    z-index: 100;
    padding: 1rem;
    background-color: var(--bs-body-bg);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--topnav-height);
    width: calc(100% - var(--sidebar-width));
    
    .breadcrumb{
        margin-bottom: 0;
    }

    .top-nav-user{
        position: relative;
        display: flex;
        align-items: center;
    }
    .top-nav-mobile{
        display: none;
    }
    .top-nav-user .dropdown-menu{
        width: 100%;
    }
}

#user-dropdown{
    display: flex;
    align-items: center;
    gap: 10px;
}
#user-dropdown::after{
    font-family: "bootstrap-icons";
    content: '\F282';
}

