ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(22, 25, 35);
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 18px;
    font-family: coolvetica;
}

li {
    float: left;
    color: rgb(255, 255, 255);
}


    li a, .dropbtn {
        display: inline-block;
        color: rgb(255, 255, 255);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        li a:hover, .dropdown:hover .dropbtn {
            background-color: rgb(22, 25, 35);
            color: rgb(255, 255, 255);
        }

    li.dropdown {
        display: inline-block;
    }

/* Dropdown css to Application section */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(22, 25, 35);
    min-width: 160px;
    z-index: 1;
}

    .dropdown-content a {
        color: rgb(255, 255, 255);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: rgb(65, 105, 225);
            color: rgb(255, 255, 255);
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown css to Admin section */
.admin-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(22, 25, 35);
    min-width: 160px;
    z-index: 1;
}

    .admin-dropdown-content a {
        color: rgb(255, 255, 255);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .admin-dropdown-content a:hover {
            background-color: rgb(65, 105, 225);
            color: rgb(255, 255, 255);
        }

.admin-dropdown:hover .admin-dropdown-content {
    display: block;
}

/* Logo in navbar */
.navbar-logo {
    height: 45px;
    width: 45px;
}

/* Color of the hr in the navbar (navigationbar) */
.nav-hr {
    border: none;
    height: 2px;
    width: 1500px;
    background-color: rgb(30, 72, 200);
    margin: 10px auto;
  }


