#sleek-ml-switcher {
    position: fixed;
    top: 80px;
    right: 16px;
    z-index: 99999;
    display: flex;
    gap: 4px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 8px;
    padding: 6px 8px;
    backdrop-filter: blur(4px);
    font-family: Arial, sans-serif;
    transition: top 0.15s ease, right 0.15s ease;
}

.sleek-ml-lang {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #999;
    text-decoration: none !important;
    transition: color 0.15s ease, background 0.15s ease;
}

.sleek-ml-lang:hover {
    color: #fff;
}

.sleek-ml-lang.active {
    background: #adbd20;
    color: #000;
}

@media (max-width: 480px) {
    #sleek-ml-switcher {
        top: 80px;
        right: 12px;
    }
}
