body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

#languageSwitcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#languageSwitcher svg {
    width: 30px;
    height: 30px;
}

#languageOptions {
    display: none;
    position: fixed;
    background-color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 999;
}

#languageOptions a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

#languageOptions a:hover {
    background-color: #e0e0e0;
}
