/* _content/MultilingualChat/Pages/Chat.razor.rz.scp.css */
.chat-container[b-p6ywfncb3y] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    overflow: hidden;
    /* Mobil cihazlarda touch event'lerin çalışması için */
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

.chat-header[b-p6ywfncb3y] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chat-header h3[b-p6ywfncb3y] {
    margin: 0;
    font-weight: 600;
}

.user-info[b-p6ywfncb3y] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.user-language[b-p6ywfncb3y] {
    font-size: 0.9rem;
    opacity: 0.9;
}

.chat-content[b-p6ywfncb3y] {
    display: flex;
    flex: 1;
    overflow: hidden;
    height: calc(100vh - 80px); /* Header yüksekliğini çıkar */
    /* Mobil cihazlarda touch event'lerin çalışması için */
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

.rooms-section[b-p6ywfncb3y] {
    width: 250px;
    min-width: 250px;
    border-right: 1px solid #dee2e6;
    height: 100%;
    overflow-y: auto;
    background: white;
    position: relative;
}

.rooms-header[b-p6ywfncb3y] {
    display: none;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    justify-content: space-between;
    align-items: center;
    /* Header'in üstünde görünmesi için */
    position: relative;
    z-index: 1000;
}

.rooms-header h5[b-p6ywfncb3y] {
    margin: 0;
    font-weight: 600;
}

.rooms-close[b-p6ywfncb3y] {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    /* Close butonunun header'in üstünde görünmesi için */
    position: relative;
    z-index: 1001;
}

.rooms-close:hover[b-p6ywfncb3y] {
    background: rgba(255, 255, 255, 0.1);
}

.room-chat-section[b-p6ywfncb3y] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.online-users[b-p6ywfncb3y] {
    width: 180px;
    min-width: 180px;
    background: white;
    border-right: 1px solid #dee2e6;
    padding: 0.75rem;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    height: 100%;
}

.users-header[b-p6ywfncb3y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Mobil cihazlarda touch event'lerin çalışması için */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    position: relative;
    z-index: 15;
}

.users-header:hover[b-p6ywfncb3y] {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem 1rem -0.5rem;
}

.users-toggle[b-p6ywfncb3y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.users-chevron[b-p6ywfncb3y] {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #6c757d;
}

.users-chevron.rotated[b-p6ywfncb3y] {
    transform: rotate(180deg);
}

.users-header h5[b-p6ywfncb3y] {
    margin: 0;
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-count[b-p6ywfncb3y] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.users-list[b-p6ywfncb3y] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-item[b-p6ywfncb3y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.user-item:hover[b-p6ywfncb3y] {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-avatar[b-p6ywfncb3y] {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.user-info[b-p6ywfncb3y] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.user-name[b-p6ywfncb3y] {
    font-weight: 600;
    color: #495057;
    font-size: 0.8rem;
}

.user-language[b-p6ywfncb3y] {
    font-size: 0.7rem;
    opacity: 0.8;
}

.status-indicator[b-p6ywfncb3y] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    flex-shrink: 0;
}

.user-item.online .status-indicator[b-p6ywfncb3y] {
    background-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
    animation: pulse-b-p6ywfncb3y 2s infinite;
}

.user-item.offline .status-indicator[b-p6ywfncb3y] {
    background-color: #dc3545;
}

.no-users[b-p6ywfncb3y] {
    text-align: center;
    padding: 2rem 1rem;
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

@keyframes pulse-b-p6ywfncb3y {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.chat-messages[b-p6ywfncb3y] {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message[b-p6ywfncb3y] {
    max-width: 70%;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.own-message[b-p6ywfncb3y] {
    align-self: flex-end;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.other-message[b-p6ywfncb3y] {
    align-self: flex-start;
    background: white;
    color: #495057;
    border: 1px solid #dee2e6;
}

.message-header[b-p6ywfncb3y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.message-time[b-p6ywfncb3y] {
    font-size: 0.7rem;
}

.message-content[b-p6ywfncb3y] {
    line-height: 1.3;
    font-size: 0.9rem;
}

.translated-text[b-p6ywfncb3y] {
    font-weight: 500;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.original-text[b-p6ywfncb3y] {
    font-size: 0.8rem;
    opacity: 0.7;
}

.chat-input[b-p6ywfncb3y] {
    padding: 1rem;
    background: white;
    border-top: 1px solid #dee2e6;
}

.input-group[b-p6ywfncb3y] {
    display: flex;
    gap: 0.5rem;
}

.input-group .form-control[b-p6ywfncb3y] {
    border-radius: 25px;
    border: 2px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.input-group .form-control:focus[b-p6ywfncb3y] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.input-group .btn[b-p6ywfncb3y] {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: transform 0.2s;
}

.input-group .btn:hover:not(:disabled)[b-p6ywfncb3y] {
    transform: translateY(-1px);
}

.input-group .btn:disabled[b-p6ywfncb3y] {
    opacity: 0.6;
    cursor: not-allowed;
}

.connection-status[b-p6ywfncb3y] {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 1000;
}

.status-online[b-p6ywfncb3y] {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9) 0%, rgba(25, 135, 84, 0.9) 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-offline[b-p6ywfncb3y] {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(176, 42, 55, 0.9) 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connection-status .status-indicator[b-p6ywfncb3y] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    animation: pulse-b-p6ywfncb3y 2s infinite;
}

.online-count[b-p6ywfncb3y] {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-left: 0.5rem;
}

.reconnecting[b-p6ywfncb3y] {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-left: 0.5rem;
}

/* Mobile Room Toggle */
.mobile-room-toggle[b-p6ywfncb3y] {
    display: none;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #dee2e6;
}

/* Mobile Online Users Toggle */
.mobile-online-users-toggle[b-p6ywfncb3y] {
    display: none;
    padding: 0.5rem 1rem;
    background: white;
    border-bottom: 1px solid #dee2e6;
}

.mobile-toggle-btn[b-p6ywfncb3y] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    /* Mobil cihazlarda touch event'lerin çalışması için */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    position: relative;
    z-index: 15;
}

.mobile-toggle-btn:hover[b-p6ywfncb3y] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-toggle-btn i[b-p6ywfncb3y] {
    font-size: 1.1rem;
}

/* Room Panel Overlay */
.room-panel-overlay[b-p6ywfncb3y] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-panel-overlay.show[b-p6ywfncb3y] {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-room-toggle[b-p6ywfncb3y] {
        display: block;
    }
    
    .rooms-section[b-p6ywfncb3y] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        z-index: 1002;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        /* Touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .rooms-section.show[b-p6ywfncb3y] {
        transform: translateX(0);
    }
    
    .rooms-header[b-p6ywfncb3y] {
        display: flex;
    }
    
    .rooms-close[b-p6ywfncb3y] {
        display: block;
    }
    
    .room-panel-overlay[b-p6ywfncb3y] {
        display: block;
        /* Touch event'leri engellememesi için */
        pointer-events: none;
        touch-action: manipulation;
    }
    
    .room-panel-overlay.show[b-p6ywfncb3y] {
        pointer-events: auto;
    }
    
    .chat-content[b-p6ywfncb3y] {
        flex-direction: column;
        /* Mobil cihazlarda touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .room-chat-section[b-p6ywfncb3y] {
        width: 100%;
        height: calc(100vh - 140px); /* Header + mobile toggle için boşluk */
        /* Touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .online-users[b-p6ywfncb3y] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        max-height: 60px;
        overflow: hidden;
        transition: max-height 0.3s ease;
        /* Touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
    }
    
    .online-users.show[b-p6ywfncb3y] {
        max-height: 200px;
    }
    
    .users-list[b-p6ywfncb3y] {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .users-list.show[b-p6ywfncb3y] {
        max-height: 150px;
    }
    
    .users-header[b-p6ywfncb3y] {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        /* Touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        cursor: pointer;
    }
    
    .user-count[b-p6ywfncb3y] {
        align-self: center;
    }
    
    .message[b-p6ywfncb3y] {
        max-width: 90%;
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.3rem;
    }
    
    .message-header[b-p6ywfncb3y] {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .message-time[b-p6ywfncb3y] {
        font-size: 0.65rem;
    }
    
    .message-content[b-p6ywfncb3y] {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .translated-text[b-p6ywfncb3y] {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .original-text[b-p6ywfncb3y] {
        font-size: 0.75rem;
    }
    
    .user-info[b-p6ywfncb3y] {
        align-items: flex-start;
    }
    
    .connection-status[b-p6ywfncb3y] {
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        text-align: center;
    }
    
    /* Mobil cihazlarda butonların touch event'lerinin düzgün çalışması için */
    .btn[b-p6ywfncb3y], button[b-p6ywfncb3y], .mobile-toggle-btn[b-p6ywfncb3y] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Input alanlarının touch event'lerinin düzgün çalışması için */
    .form-control[b-p6ywfncb3y], input[b-p6ywfncb3y], textarea[b-p6ywfncb3y] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Landscape mobile devices - yatay mod için özel kurallar */
@media (max-width: 768px) and (orientation: landscape) {
    .chat-container[b-p6ywfncb3y] {
        height: 100vh; /* Tam ekran yüksekliği */
    }
    
    .chat-content[b-p6ywfncb3y] {
        flex-direction: row; /* Yatay modda yan yana */
        height: calc(100vh - 60px); /* Header yüksekliği */
    }
    
    .room-chat-section[b-p6ywfncb3y] {
        flex: 1;
        height: 100%;
        min-width: 0; /* Flex item'ın küçülmesine izin ver */
    }
    
    .online-users[b-p6ywfncb3y] {
        width: 200px;
        min-width: 200px;
        max-height: none;
        height: 100%;
        border-right: 1px solid #dee2e6;
        border-bottom: none;
        overflow-y: auto;
    }
    
    .online-users.show[b-p6ywfncb3y] {
        max-height: none;
    }
    
    .users-list[b-p6ywfncb3y] {
        max-height: none;
        overflow: visible;
    }
    
    .users-list.show[b-p6ywfncb3y] {
        max-height: none;
    }
    
    .mobile-room-toggle[b-p6ywfncb3y] {
        display: none; /* Yatay modda gizle */
    }
    
    .mobile-online-users-toggle[b-p6ywfncb3y] {
        display: block; /* Yatay modda göster */
    }
    
    .rooms-section[b-p6ywfncb3y] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .rooms-section.show[b-p6ywfncb3y] {
        transform: translateX(0);
    }
    
    .room-panel-overlay[b-p6ywfncb3y] {
        display: block;
    }
}

@media (max-width: 480px) {
    .rooms-section[b-p6ywfncb3y] {
        width: 100%;
    }
    
    .room-chat-section[b-p6ywfncb3y] {
        height: calc(100vh - 120px);
    }
}

/* Scrollbar styling */
.chat-messages[b-p6ywfncb3y]::-webkit-scrollbar,
.online-users[b-p6ywfncb3y]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-p6ywfncb3y]::-webkit-scrollbar-track,
.online-users[b-p6ywfncb3y]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages[b-p6ywfncb3y]::-webkit-scrollbar-thumb,
.online-users[b-p6ywfncb3y]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chat-messages[b-p6ywfncb3y]::-webkit-scrollbar-thumb:hover,
.online-users[b-p6ywfncb3y]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* _content/MultilingualChat/Shared/MainLayout.razor.rz.scp.css */
/* Modern sidebar styles for Blazor pages */
.sidebar[b-dxapz3t9ai] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar-header[b-dxapz3t9ai] {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-brand[b-dxapz3t9ai] {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sidebar-brand:hover[b-dxapz3t9ai] {
    color: #ffffff;
}

.sidebar-close[b-dxapz3t9ai] {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-close:hover[b-dxapz3t9ai] {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav[b-dxapz3t9ai] {
    padding: 1rem 0;
}

.nav-item[b-dxapz3t9ai] {
    margin: 0.25rem 0;
}

.nav-link[b-dxapz3t9ai] {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.nav-link:hover[b-dxapz3t9ai] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.nav-link i[b-dxapz3t9ai] {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.main-content[b-dxapz3t9ai] {
    margin-left: 250px;
    min-height: 100vh;
    padding: 2rem;
}

/* Mobile Header */
.mobile-header[b-dxapz3t9ai] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    align-items: center;
    padding: 0 1rem;
}

.mobile-menu-btn[b-dxapz3t9ai] {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover[b-dxapz3t9ai] {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-brand[b-dxapz3t9ai] {
    flex: 1;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 1rem;
}

.mobile-brand i[b-dxapz3t9ai] {
    margin-right: 0.5rem;
}

.mobile-actions[b-dxapz3t9ai] {
    display: flex;
    align-items: center;
}

.mobile-chat-btn[b-dxapz3t9ai] {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.mobile-chat-btn:hover[b-dxapz3t9ai] {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(1.1);
}

/* Sidebar Overlay */
.sidebar-overlay[b-dxapz3t9ai] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.show[b-dxapz3t9ai] {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-header[b-dxapz3t9ai] {
        display: flex;
    }
    
    .sidebar[b-dxapz3t9ai] {
        transform: translateX(-100%);
        width: 280px;
        /* Touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .sidebar.show[b-dxapz3t9ai] {
        transform: translateX(0);
    }
    
    .sidebar-close[b-dxapz3t9ai] {
        display: block;
    }
    
    .sidebar-overlay[b-dxapz3t9ai] {
        display: block;
        /* Touch event'leri engellememesi için */
        pointer-events: none;
        touch-action: manipulation;
    }
    
    .sidebar-overlay.show[b-dxapz3t9ai] {
        pointer-events: auto;
    }
    
    .main-content[b-dxapz3t9ai] {
        margin-left: 0;
        padding: 1rem;
        padding-top: 80px; /* Mobile header için boşluk */
        /* Touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobil cihazlarda butonların touch event'lerinin düzgün çalışması için */
    .btn[b-dxapz3t9ai], button[b-dxapz3t9ai], .mobile-menu-btn[b-dxapz3t9ai], .mobile-chat-btn[b-dxapz3t9ai] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Nav link'lerin touch event'lerinin düzgün çalışması için */
    .nav-link[b-dxapz3t9ai] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

@media (max-width: 480px) {
    .mobile-brand span[b-dxapz3t9ai] {
        display: none;
    }
    
    .sidebar[b-dxapz3t9ai] {
        width: 100%;
    }
    
    .main-content[b-dxapz3t9ai] {
        padding: 0.5rem;
        padding-top: 70px;
    }
}
/* _content/MultilingualChat/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-l5h0bbljzu] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-l5h0bbljzu] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-l5h0bbljzu] {
    font-size: 1.1rem;
}

.oi[b-l5h0bbljzu] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-l5h0bbljzu] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-l5h0bbljzu] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-l5h0bbljzu] {
        padding-bottom: 1rem;
    }

    .nav-item[b-l5h0bbljzu]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-l5h0bbljzu]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-l5h0bbljzu]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-l5h0bbljzu] {
        display: none;
    }

    .collapse[b-l5h0bbljzu] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-l5h0bbljzu] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/MultilingualChat/Shared/RoomChat.razor.rz.scp.css */
.room-chat-container[b-tsmokh88hm] {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
}

/* Mobile Room Info Toggle */
.mobile-room-info-toggle[b-tsmokh88hm] {
    display: none;
    padding: 0.5rem 1rem;
    background: white;
    border-bottom: 1px solid #dee2e6;
}

.mobile-room-toggle-btn[b-tsmokh88hm] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    transition: all 0.3s ease;
}

.mobile-room-toggle-btn:hover[b-tsmokh88hm] {
    background: #e9ecef;
    border-color: #adb5bd;
}

.mobile-room-toggle-btn i[b-tsmokh88hm] {
    font-size: 0.9rem;
}

.room-header[b-tsmokh88hm] {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-title h5[b-tsmokh88hm] {
    margin: 0;
    color: #495057;
    font-weight: 600;
}

.room-title small[b-tsmokh88hm] {
    color: #6c757d;
}

.room-actions[b-tsmokh88hm] {
    display: flex;
    gap: 0.5rem;
}

.room-actions .btn[b-tsmokh88hm] {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.messages-container[b-tsmokh88hm] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: #f8f9fa;
    height: calc(100vh - 200px); /* Header ve input alanı için yer bırak */
    width: 100%;
}

.message-item[b-tsmokh88hm] {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.message-item.own-message[b-tsmokh88hm] {
    flex-direction: row-reverse;
}

.message-item.own-message .message-content[b-tsmokh88hm] {
    background-color: #007bff;
    color: white;
    margin-right: 0.5rem;
    margin-left: 0;
}

.message-item.own-message .message-sender[b-tsmokh88hm] {
    color: rgba(255,255,255,0.8);
}

.message-item.own-message .message-time[b-tsmokh88hm] {
    color: rgba(255,255,255,0.7);
}

.message-avatar[b-tsmokh88hm] {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.message-item.own-message .message-avatar[b-tsmokh88hm] {
    margin-right: 0;
    margin-left: 0.5rem;
}

.avatar-circle[b-tsmokh88hm] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar-circle.current-user[b-tsmokh88hm] {
    background-color: #007bff;
}

.message-content[b-tsmokh88hm] {
    background-color: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    max-width: 70%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-left: 0.5rem;
}

.message-header[b-tsmokh88hm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.message-sender[b-tsmokh88hm] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #495057;
}

.message-time[b-tsmokh88hm] {
    font-size: 0.75rem;
    color: #6c757d;
}

.message-text[b-tsmokh88hm] {
    line-height: 1.4;
    word-wrap: break-word;
}

.message-translation[b-tsmokh88hm] {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-style: italic;
    color: #6c757d;
}

.message-translation.loading[b-tsmokh88hm] {
    color: #007bff;
    font-style: normal;
}

.message-translation.loading[b-tsmokh88hm]::after {
    content: "...";
    animation: dots-b-tsmokh88hm 1.5s infinite;
}

@keyframes dots-b-tsmokh88hm {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

.message-input-container[b-tsmokh88hm] {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    background-color: white;
    flex-shrink: 0; /* Input alanının küçülmesini önle */
}

.message-input-container .form-control[b-tsmokh88hm] {
    border-radius: 20px;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
}

.message-input-container .form-control:focus[b-tsmokh88hm] {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.message-input-container .btn[b-tsmokh88hm] {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scrollbar styling */
.messages-container[b-tsmokh88hm]::-webkit-scrollbar {
    width: 6px;
}

.messages-container[b-tsmokh88hm]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.messages-container[b-tsmokh88hm]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.messages-container[b-tsmokh88hm]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-room-info-toggle[b-tsmokh88hm] {
        display: block;
    }
    
    .room-header[b-tsmokh88hm] {
        display: none;
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .room-header.show[b-tsmokh88hm] {
        display: flex;
    }
    
    .room-actions[b-tsmokh88hm] {
        width: 100%;
        justify-content: flex-end;
    }
    
    .messages-container[b-tsmokh88hm] {
        padding: 0.75rem;
        height: calc(100vh - 120px); /* Daha fazla alan için */
        /* Mobil cihazlarda touch event'lerin düzgün çalışması için */
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .message-content[b-tsmokh88hm] {
        max-width: 90%;
        padding: 0.5rem 0.75rem;
    }
    
    .message-item[b-tsmokh88hm] {
        margin-bottom: 0.5rem;
    }
    
    .message-header[b-tsmokh88hm] {
        margin-bottom: 0.2rem;
    }
    
    .message-sender[b-tsmokh88hm] {
        font-size: 0.8rem;
    }
    
    .message-time[b-tsmokh88hm] {
        font-size: 0.7rem;
    }
    
    .message-text[b-tsmokh88hm] {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .message-input-container[b-tsmokh88hm] {
        padding: 0.75rem;
    }
    
    /* Mobil cihazlarda butonların touch event'lerinin düzgün çalışması için */
    .btn[b-tsmokh88hm], button[b-tsmokh88hm], .mobile-room-toggle-btn[b-tsmokh88hm] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Input alanlarının touch event'lerinin düzgün çalışması için */
    .form-control[b-tsmokh88hm], input[b-tsmokh88hm], textarea[b-tsmokh88hm] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mesaj item'larının touch event'lerinin düzgün çalışması için */
    .message-item[b-tsmokh88hm] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}
/* _content/MultilingualChat/Shared/RoomList.razor.rz.scp.css */
.room-list-container[b-g4rrwkdmb1] {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.room-list-header[b-g4rrwkdmb1] {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-list-header h5[b-g4rrwkdmb1] {
    margin: 0;
    color: #495057;
    font-weight: 600;
}

.room-list[b-g4rrwkdmb1] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.room-item[b-g4rrwkdmb1] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-item:hover[b-g4rrwkdmb1] {
    background-color: #e9ecef;
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.room-item.active[b-g4rrwkdmb1] {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

.room-item.active .room-description[b-g4rrwkdmb1],
.room-item.active .room-meta[b-g4rrwkdmb1] {
    color: rgba(255,255,255,0.8);
}

.room-info[b-g4rrwkdmb1] {
    flex: 1;
}

.room-name[b-g4rrwkdmb1] {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.room-description[b-g4rrwkdmb1] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.room-meta[b-g4rrwkdmb1] {
    font-size: 0.75rem;
    color: #6c757d;
}

.room-actions[b-g4rrwkdmb1] {
    margin-left: 1rem;
}

.room-actions .btn[b-g4rrwkdmb1] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .room-list-header[b-g4rrwkdmb1] {
        padding: 0.75rem;
    }
    
    .room-item[b-g4rrwkdmb1] {
        padding: 0.75rem;
    }
    
    .room-name[b-g4rrwkdmb1] {
        font-size: 0.9rem;
    }
    
    .room-description[b-g4rrwkdmb1] {
        font-size: 0.8rem;
    }
}
