.language-switcher-dropdown {
    position: relative;
    display: inline-block;
}

.language-switcher-button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-switcher-button .current-flag {
    max-width: 30px;
    margin-right: 5px;
}

.language-switcher-button .caret {
    border-top: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin-left: 5px;
}

.language-switcher-options {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
}

.language-switcher-options li {
    padding: 8px;
    text-align: center;
}

.language-switcher-options li a {
    text-decoration: none;
    display: block;
    color: #000;
}

.language-switcher-options li:hover {
    background-color: #f1f1f1;
}

.language-switcher-dropdown:hover .language-switcher-options {
    display: block;
}
