.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    background-color: #333;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content button {
    color: white;
    padding: 12px 16px;
    margin: 8px 0;
    text-decoration: none;
    display: block;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
}
.dropdown-content button:hover {
    background-color: #00bcd4;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.flag-button img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.flag-button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
}
