.language-dropdown {
    position: relative;
    display: inline-block;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e0e0e0;
}

.language-dropdown-button {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 14px;
}

.language-dropdown-button img {
    margin-right: 8px;
    width: 20px;
    height: 15px;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e1e1e;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 4px;
    border: 1px solid #333;
    margin-top: 2px;
    right: 0;
}

.language-dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #e0e0e0;
    transition: background-color 0.2s;
}

.language-dropdown-content a:hover {
    background-color: #2a2a2a;
}

.language-dropdown-content a img {
    margin-right: 8px;
    width: 20px;
    height: 15px;
}

.language-dropdown-content.show {
    display: block;
}

.language-dropdown-arrow {
    margin-left: 8px;
}

/* JavaScript will be used to toggle the show class */
