#ui-lang-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

/* Floating button */
#ui-lang-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
#ui-lang-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    min-width: 180px;
    overflow: hidden;
}

#ui-lang-dropdown.open {
    display: block;
}

/* Items */
.ui-lang-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
}

.ui-lang-item:hover {
    background: #f2f2f2;
}