/* assets/lang.css - Language toggle button, shared across public pages */
.lang-toggle-btn {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.lang-toggle-btn:hover {
    background: #6366f1;
    color: #fff;
}

body.lang-en {
    direction: ltr;
}

body.lang-en .release-notes,
body.lang-en .release-meta {
    direction: ltr;
}
