/* Language Selector Styles */
.language-selector {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    z-index: 3000;
}

.language-option {
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: rgba(255,255,255,0.2);
}

/* RTL and LTR specific adjustments */
[dir="rtl"] .app-header,
[dir="rtl"] .sidebar-menu,
[dir="rtl"] .chat-container {
    text-align: right;
}

[dir="ltr"] .app-header,
[dir="ltr"] .sidebar-menu,
[dir="ltr"] .chat-container {
    text-align: left;
}