.navbar {
    overflow: hidden;
    background-color: #f4f4f4;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 0 20px;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: #267CB9;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: inherit;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #267CB9;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #e0e0e0;
    color: #069;
    text-decoration: underline;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 1px solid #e5e5e5;
    border-top: none;
}

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

.dropdown-content a:hover {
    background-color: #ddd;
    color: #222;
    font-weight: 400;
}

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