/* n8n Chat Widget - FORCE LEFT SIDE */
@import url('https://cdn.jsdelivr.net/npm/@n8n/chat/dist/style.css');

/* OVERRIDE n8n's internal positioning */
n8n-chat {
    position: fixed !important;
    left: 20px !important;
    bottom: 20px !important;
    right: auto !important;
    z-index: 9999 !important;
}

/* Force the chat container to left */
n8n-chat .chat-container {
    left: 20px !important;
    right: auto !important;
    transform: none !important;
}

/* Force the toggle button to left */
n8n-chat .chat-toggle {
    left: 20px !important;
    right: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Mobile left positioning */
@media (max-width: 768px) {
    n8n-chat {
        left: 10px !important;
        bottom: 10px !important;
    }
    
    n8n-chat .chat-container,
    n8n-chat .chat-toggle {
        left: 10px !important;
        right: auto !important;
    }
}

/* Hide English welcome messages */
n8n-chat [class*="message"]:nth-child(1),
n8n-chat [class*="message"]:nth-child(2) {
    display: none !important;
}

/* Add custom Arabic welcome */
n8n-chat::before {
    content: "مرحباً! أنا مساعدك الافتراضي. كيف يمكنني مساعدتك في العثور على المنتجات اليوم؟";
    display: block;
    padding: 15px;
    background: #f0f5ff;
    border-radius: 8px;
    margin: 10px;
    color: #333;
    text-align: right;
}