/* English Version Overrides */
/* This file contains LTR-specific styles for the English version */

html[dir="ltr"] body,
html[lang="en"] body {
    font-family: 'Inter', sans-serif;
    direction: ltr;
    text-align: left;
}

/* Fix text alignment for LTR */
html[lang="en"] .features-list {
    text-align: left;
}

html[lang="en"] .prompt-box,
html[lang="en"] .result-box {
    text-align: left;
}

/* Navbar adjustments for LTR */
html[lang="en"] nav .container {
    flex-direction: row;
}

html[lang="en"] .nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switch Button */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile adjustments for language switch */
@media (max-width: 768px) {
    .nav-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .lang-switch {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Fix code block labels for LTR */
html[lang="en"] .label {
    text-align: left;
}

/* Pricing adjustments for LTR */
html[lang="en"] .features-list li {
    flex-direction: row;
}
