    /* alviss Chatbot Widget Styles - alviss-landingpage */
    /* Auto-generated on 2025-12-11 16:20:06 */

    @import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

    :root {
    --chatbot-header-bg: #6366f1;
    --chatbot-header-text: #ffffff;
    --chatbot-chat-bg: #ffffff;
    --chatbot-question-bg: #f3f4f6;
    --chatbot-question-text: #1f2937;
    --chatbot-answer-bg: #6366f1;
    --chatbot-answer-text: #ffffff;
    --chatbot-input-bg: #ffffff;
    --chatbot-input-text: #1f2937;
    --chatbot-send-button-bg: #6366f1;
    --chatbot-send-button-icon: #ffffff;
    --chatbot-powered-by-bg: #f9fafb;
    --chatbot-powered-by-text: #6b7280;
    --chatbot-close-button-bg: #ef4444;
    --chatbot-close-button-icon: #ffffff;
    --chatbot-chat-bubble-bg: #6366f1;
    --chatbot-chat-bubble-icon: #ffffff;
    --chatbot-width: 400px;
    --chatbot-height: 600px;
    --chatbot-border-radius: 12px;
}

#chatbot-alviss-window,
#chatbot-alviss-window *,
#chatbot-alviss-bubble,
#chatbot-alviss-bubble * {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
}

/* Chat Bubble Button */
#chatbot-alviss-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--chatbot-chat-bubble-bg);
    color: var(--chatbot-chat-bubble-icon);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

#chatbot-alviss-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#chatbot-alviss-bubble svg {
    width: 28px;
    height: 28px;
}

/* Chat Window */
#chatbot-alviss-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: var(--chatbot-width);
    height: var(--chatbot-height);
    background: var(--chatbot-chat-bg);
    border-radius: var(--chatbot-border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
}

#chatbot-alviss-window.open {
    display: flex;
}

/* Header */
#chatbot-alviss-header {
    background: var(--chatbot-header-bg);
    color: var(--chatbot-header-text);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

#chatbot-alviss-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

#chatbot-alviss-header p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

#chatbot-alviss-close {
    background: var(--chatbot-close-button-bg);
    color: var(--chatbot-close-button-icon);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

#chatbot-alviss-close:hover {
    opacity: 0.8;
}

/* Messages Container */
#chatbot-alviss-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--chatbot-chat-bg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Message Bubbles */
.chatbot-message {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
    animation: fadeIn 0.3s;
}

.chatbot-message.user {
    background: var(--chatbot-question-bg);
    color: var(--chatbot-question-text);
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-message.bot {
    background: var(--chatbot-answer-bg);
    color: var(--chatbot-answer-text);
    align-self: flex-start;
}

.chatbot-message.bot p {
    margin: 0 0 8px 0;
}

.chatbot-message.bot p:last-child {
    margin-bottom: 0;
}

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

/* Input Area */
#chatbot-alviss-input-container {
    padding: 16px 20px;
    background: var(--chatbot-input-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 12px;
}

#chatbot-alviss-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    background: var(--chatbot-input-bg);
    color: var(--chatbot-input-text);
    outline: none;
}

#chatbot-alviss-input::placeholder {
    color: var(--chatbot-input-text);
    opacity: 0.5;
}

#chatbot-alviss-send {
    background: var(--chatbot-send-button-bg);
    color: var(--chatbot-send-button-icon);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

#chatbot-alviss-send:hover:not(:disabled) {
    opacity: 0.9;
}

#chatbot-alviss-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Powered By Footer */
#chatbot-alviss-footer {
    padding: 12px 20px;
    background: var(--chatbot-powered-by-bg);
    color: var(--chatbot-powered-by-text);
    text-align: center;
    font-size: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#chatbot-alviss-footer a {
    color: var(--chatbot-powered-by-text);
    text-decoration: none;
    font-weight: 500;
}

#chatbot-alviss-footer a:hover {
    text-decoration: underline;
}

/* Loading Animation */
.chatbot-loading {
    display: inline-flex;
    gap: 4px;
}

.chatbot-loading span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    animation: bounce 1.4s infinite ease-in-out both;
}

.chatbot-loading span:nth-child(1) {
    animation-delay: -0.32s;
}

.chatbot-loading span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #chatbot-alviss-window {
        width: calc(100vw - 32px) !important;
        height: calc(100vh - 100px) !important;
        max-width: var(--chatbot-width);
        max-height: var(--chatbot-height);
    }
}
