.language-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.language-toggle:hover {
    transform: scale(1.1);
    background-color: #45a049;
}

.language-toggle i {
    font-size: 20px;
    margin-right: 2px;
}

.language-toggle span {
    font-size: 14px;
    font-weight: bold;
}