.chat-container-6eb7656b {
    position: fixed;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-container-6eb7656b[style*="left:"] {
    align-items: flex-start;
}

.chat-bubble-6eb7656b {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0073e6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.chat-bubble-6eb7656b:hover {
    transform: scale(1.05);
}

.chat-bubble-6eb7656b svg {
    width: 30px;
    height: 30px;
}

.chat-popup-6eb7656b {
    width: 320px;
    max-width: calc(100vw - 40px);
    height: 450px;
    max-height: calc(100vh - 100px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chat-header-6eb7656b {
    padding: 15px 20px;
    background: #0073e6;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-close-6eb7656b {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.chat-body-6eb7656b {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f9f9f9;
}

.chat-msg-bot-6eb7656b, .chat-msg-user-6eb7656b {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
    animation: fadeIn6eb7656b 0.3s ease;
}

.chat-msg-bot-6eb7656b {
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg-user-6eb7656b {
    background: #0073e6;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-faqs-container-6eb7656b {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chat-faq-btn-6eb7656b {
    background: transparent;
    border: 1px solid #0073e6;
    color: #0073e6;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.chat-faq-btn-6eb7656b:hover {
    background: rgba(0, 115, 230, 0.05);
}

.chat-typing-6eb7656b {
    display: flex;
    gap: 4px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: fit-content;
}

.chat-dot-6eb7656b {
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    animation: typing6eb7656b 1.4s infinite ease-in-out both;
}

.chat-dot-6eb7656b:nth-child(1) { animation-delay: -0.32s; }
.chat-dot-6eb7656b:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing6eb7656b {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

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