/* Language Toggle Button Styles */
.lang-toggle-btn {
    display: flex;
    align-items: center;
}

.lang-switch {
    display: inline-block;
    padding: 8px 12px;
    background-color: #0F4C81;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #0F4C81;
}

.lang-switch:hover {
    background-color: transparent;
    color: #0F4C81;
    transform: scale(1.05);
}

/* RTL Specific Styles */
html[dir="rtl"] .ori-header-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .ori-main-navigation-area {
    margin-right: 40px;
}

html[dir="rtl"] .brand-logo {
    margin-left: 20px;
}

html[dir="rtl"] .lang-toggle-btn {
    margin-left: 20px;
}

html[dir="ltr"] .lang-toggle-btn {
    margin-right: 20px;
}

/* Ensure mobile menu language button is properly styled in RTL */
html[dir="rtl"] .mobile-main-navigation ul li:last-child {
    text-align: right;
}

html[dir="rtl"] .mobile-main-navigation ul li:last-child a {
    display: block;
    text-align: center;
}

/* Banner text alignment for RTL */
html[dir="rtl"] .ori-banner-text-area {
    text-align: right;
}

html[dir="rtl"] .ori-banner-btn-area {
    justify-content: center;
}

/* Footer text alignment for RTL */
html[dir="rtl"] .ori-footer-text {
    text-align: right;
}

/* Ensure proper spacing in both directions */
@media (max-width: 768px) {
    .lang-toggle-btn {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .lang-switch {
        width: 100%;
        text-align: center;
    }
}
