/* Chatbot Floating Bubble */
#fusionSpan-chat-bubble {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2147483647;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    max-width: 240px;
    border: 1px solid #e5e7eb;
    animation: fadeInChatBubble 0.5s ease-out;
    transition: all 0.3s ease;
}

#fusionSpan-chat-bubble .bubble-content {
    position: relative;
    padding-right: 15px;
}

#fusionSpan-chat-bubble .bubble-title {
    font-weight: 600;
    color: #1c80b7;
}

#fusionSpan-chat-bubble .bubble-sub {
    font-size: 13px;
}

#close-chat-bubble {
    position: absolute;
    top: -8px;
    right: -5px;
    cursor: pointer;
    font-weight: bold;
    color: #999;
    font-size: 16px;
}

#fusionSpan-chat-bubble .bubble-arrow {
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

@keyframes fadeInChatBubble {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
