/* Style the language dropdown */

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

/* Style the language dropdown button */
.dropbtn,
.fa-language {
    background-color: #111;
    color: white;
    padding: 10px 0px 10px 0px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Style the language dropdown content */
.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;
    text-align: left;
    right: -28px;
}

.dropbtn:focus {
    outline: none;
}

/* Style the language dropdown links */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Style the language dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the language dropdown content when the dropdown button is hovered over */
.language-dropdown:hover .dropdown-content {
    display: block;
}