.app-topbar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    top: 0;
    right: 0;
    left: 250px;
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #e9ebec;
    padding: 0 25px;
}

.admin-bar .app-topbar {
    top: 32px;
}

.app-topbar .topbar-search {
    width: 300px;
}

.app-topbar .topbar-user {
    display: flex;
    align-items: center;
    height: 70px;
    font-weight: 500;
}

.app-topbar .topbar-user img {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 10px;
}

.app-topbar .topbar-user p {
    color: #495057;
}

.app-breadcrumbs {
    padding: 10px 24px;
    background-color: #fff;
    border-bottom: 1px solid #e9ebec;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-breadcrumbs h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.app-breadcrumbs ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    list-style-type: none;
}

.app-breadcrumbs ul li::after {
    content: "/";
    margin-left: 8px;
    margin-right: 8px;
}

.app-breadcrumbs ul li:last-child::after {
    display: none;
}

.app-breadcrumbs ul li.active {
    color: #878a99;
}

.app-breadcrumbs ul li a {
    color: #212529;
    text-decoration: none;
}
