/* SYNERG-IA AI FRAMEWORK: PREMIUM STYLES (v3.0) */

:root {
    --ai-primary: #2563eb;
    --ai-primary-dark: #1d4ed8;
    --ai-bg: #ffffff;
    --ai-text-main: #0f172a;
    --ai-text-muted: #64748b;
    --ai-border: #f1f5f9;
    --ai-bubble-bot: #ffffff;
    --ai-bubble-user: #1d4ed8;
    --ai-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

#ai-assistant-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999999;
    display: block !important;
}

/* Chat Window */
#ai-chat-window {
    width: 420px;
    height: 600px;
    max-height: calc(100vh - 120px);
}

@media (max-width: 768px) {
    #ai-assistant-container {
        bottom: 16px !important;
        right: 16px !important;
    }
    #ai-chat-window {
        width: calc(100vw - 32px) !important;
        height: calc(100vh - 100px) !important;
        bottom: 80px !important;
        right: 0 !important;
    }
}
