/* NAV BAR STYLE */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 0 16px;
}

.navbar-left {
    display: flex;
    align-items: center;
}

    .navbar-left img {
        height: 40px;
        margin-right: 10px;
    }

    .navbar-left span {
        color: white;
        font-size: 20px;
        font-weight: bold;
    }

.navbar-right {
    display: flex;
    align-items: center;
}

    .navbar-right a,
    .dropbtn {
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        background-color: inherit;
        border: none;
        cursor: pointer;
    }

        .navbar-right a:hover,
        .dropdown:hover .dropbtn,
        .dropbtn:focus {
            background-color: red;
        }

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.show {
    display: block;
}