.ai-chatbot-container-801bc24e {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ai-chatbot-window-801bc24e {
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.ai-chatbot-header-801bc24e {
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chatbot-header-text-801bc24e {
    display: flex;
    flex-direction: column;
}

.ai-chatbot-title-801bc24e {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.ai-chatbot-subtitle-801bc24e {
    font-size: 11px;
    opacity: 0.8;
}

.ai-chatbot-close-801bc24e {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.ai-chatbot-messages-801bc24e {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-chatbot-msg-801bc24e {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.ai-chatbot-msg-ai-801bc24e {
    align-self: flex-start;
    color: #fff;
    border-bottom-left-radius: 2px;
}

.ai-chatbot-msg-user-801bc24e {
    align-self: flex-end;
    background: #e0e0e0;
    color: #333;
    border-bottom-right-radius: 2px;
}

.ai-chatbot-quick-actions-801bc24e {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.ai-chatbot-quick-btn-801bc24e {
    background: transparent;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.ai-chatbot-input-area-801bc24e {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-chatbot-input-801bc24e {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.ai-chatbot-input-801bc24e:focus {
    border-color: #999;
}

.ai-chatbot-send-801bc24e {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.ai-chatbot-send-801bc24e svg {
    transition: transform 0.2s;
}

.ai-chatbot-send-801bc24e:hover svg {
    transform: scale(1.1);
}

.ai-chatbot-toggle-wrapper-801bc24e {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.ai-chatbot-label-801bc24e {
    background: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: transform 0.2s, opacity 0.2s;
}

.ai-chatbot-toggle-wrapper-801bc24e:hover .ai-chatbot-label-801bc24e {
    transform: translateY(-2px);
}

.ai-chatbot-toggle-801bc24e {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chatbot-toggle-wrapper-801bc24e:hover .ai-chatbot-toggle-801bc24e {
    transform: scale(1.05);
}

.ai-chatbot-typing-801bc24e {
    display: inline-block;
    width: 30px;
    height: 10px;
    position: relative;
}

.ai-chatbot-typing-801bc24e::after {
    content: "...";
    animation: typing 1.5s infinite steps(4, end);
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 20px;
    letter-spacing: 2px;
}

@keyframes typing {
    0%, 100% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
}

@media (max-width: 480px) {
    .ai-chatbot-window-801bc24e {
        width: calc(100vw - 40px);
        height: 60vh;
    }
}