﻿.language-switcher {
    position: fixed;
    top: 20px;
    /*z-index: 2000;*/ 
    transition: all 0.3s ease;
}


html[dir="ltr"] .language-switcher {
    /*right: 20px;*/
    left: 20px;
}

html[dir="rtl"] .language-switcher {
    /*left: 20px;*/
    right: 20px;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 64px;
    height: 36px;
    padding: 0 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s ease, color 0.3s ease;
}

    .language-switcher a:hover {
        background: #0d6efd;
        color: #fff;
    }

.language-switcher i {
    font-size: 16px;
    line-height: 1;
}

.lang-text {
    font-size: 14px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}






/* RTL support */
.rtl {
    direction: rtl;
}

    .rtl .zone-title {
        text-align: right;
    }

    .rtl .separator {
        margin: 0 10px;
    }

    /* Search icon positioning */
    .rtl .search-icon {
        right: auto;
        left: 12px;
    }

    /* Arabic (RTL) */
    .rtl .search-box {
        float: left; /* move search box to left */
        width: 100%;
    }

        .rtl .search-box .form-control {
            text-align: right; /* Arabic typing */
            width: 100%;
        }


.search-icon {
    cursor: pointer;
}
