/* Language Menu Styling */
#language-menu {
    z-index: 999;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    text-align: center;
}

#language-toggle {
    background-color: #8EC837;
    color: #FFFFFF;
    width: 46px;
    height: 46px;
    line-height: 36px;
    font-size: 26px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

#language-toggle:hover {
    opacity: 1;
}

#language-options {
    position: absolute;
    bottom: 40px;
    /* Above the toggle button */
    left: 0;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    align-items: center;
}

.lang-option {
    background-color: #8EC837;
    color: #FFFFFF;
    text-decoration: none;
    padding: 6px 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.lang-option:hover {
    background-color: #76A52F;
}

/* Show options when the menu is active */
#language-menu.active #language-options {
    display: flex;
}