/* navbar.css */

.navbar {
    display: flex;
    /*justify-content: space-between; !* Keeps items on both ends *!*/
    align-items: center;
    background-color: #192b4d;
    /*background-color: #87a5e1;*/
    padding: 0 10px; /* Add some padding on the sides */
}

/* Add a class for the left-aligned items */
.navbar-left {
    display: flex;
    /* No space between to group items together */
}
.navbar-right {
    display: flex;
    /* No space between to group items together */
}

.navbar-right-join {
    display: flex;
    background-color: #ffffff;
    /* No space between to group items together */
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}



.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}
