.navbar {
    display: flex;
    position: relative;
    width: 100%;
    background-color: #dddddd;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    /*box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);*/
}

.navbar::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.6);
    /*background: linear-gradient(
        90deg, #0077ff, #000055, #000055, #000055, #0077ff
    );*/
    filter: blur(15px);
    z-index: -1;
    border-radius: 20px;
    background-size: 200% 100%;
}

/* is-loading class and navbar shadow update */

.navbar.is-loading::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(
        90deg, #0077ff, #000055, #000055, #000055, #0077ff
    );
    filter: blur(15px);
    z-index: -1;
    border-radius: 20px;
    background-size: 200% 100%;

    animation: navbar-loader 1s linear infinite;
}

.is-loading {
    background-color: #dddddd;
}

/* Navbar individual elements */

.navbar img {
    width: 45px;
    height: 45px;
    margin-left: 20px;
    margin-right: 20px;
}

.navbar-left-div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    height: 50px;
}

.navbar-right-div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
    height: 50px;
}

.navbar-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 35px;
    background-color: #0077ff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    color: white;
    text-decoration: none;

    transition: transform 0.3s ease;
}

.navbar-button:hover {
    transform: translate(0, -3px);
}

@keyframes navbar-loader {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -200% 50%;
    }
}