.custom-lang-switcher {
    position: relative;
    display: inline-block;
    direction: ltr;
    font-family: sans-serif;
    z-index: 9999;
}

.cls-button {
    background-color: #472f92;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.cls-dropdown {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 80px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    margin-top: 4px;
    left: 0;
    text-align: center;
}

.cls-dropdown a {
    color: #472f92;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.cls-dropdown a:hover {
    background-color: #f0f0f0;
}

.cls-dropdown a.active {
    background-color: #472f92;   /* رنگ لوگوی شما */
    color: #ffffff;              /* متن سفید برای تضاد بهتر */
    font-weight: bold;
    border-radius: 4px;
    pointer-events: none;        /* غیرفعال کردن کلیک روی زبان فعلی */
}


.custom-lang-switcher:hover .cls-dropdown {
    display: block;
}
