.navbar {
    height: var(--height-navbar);
    box-sizing: border-box;
    border-bottom: 2px solid #b8c4c2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;

    background-position: bottom center;
    background-repeat: repeat-x;
    padding: 0 1rem;
}

.navbar .navbar-brand {
    height: var(--height-navbar);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    width: min-content;
}

.navbar .navbar-brand img {
    height: 60%;
}

.navbar-system-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    text-align: center;
}

.navbar-options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-options .navbar-profile {
    height: 100%;
    /* margin-right: 15px; */

    display: flex;
    align-items: center;
}

.navbar-options .navbar-profile img {
    height: 45px;
}

.navbar-options .navbar-profile .username {
    font-size: 18px;
    color: white;
    margin-left: 10px;
    font-weight: 500;
}

.navbar-white {
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 0%), 0 3px 10px 5px rgb(0 0 0 / 5%) !important;
    border-bottom: none;

    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

.navbar-white .navbar-system-name {
    color: #343a40;
}

.navbar-white .navbar-options .navbar-profile .username,
.navbar-white .navbar-options button,
.navbar-white .navbar-options button svg,
.navbar-white .navbar-options a,
.navbar-white .navbar-options a svg {
    color: var(--secondary-color) !important;
}
