/* --- Celebtree AI Chatbot Styles --- */

/* Launcher Trigger Button */
.ai-chat-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    animation: launcherPulse 2s infinite;
}

.ai-chat-launcher:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.6);
}

.ai-chat-launcher i {
    transition: transform 0.4s ease;
}

.ai-chat-launcher.active i {
    transform: rotate(90deg);
}

@keyframes launcherPulse {
    0% {
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.6);
    }
    70% {
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), 0 0 0 15px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

/* Chat Main Panel Container */
.ai-chat-container {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 380px;
    height: 540px;
    max-height: 80vh;
    border-radius: 24px;
    background: rgba(10, 10, 42, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(139, 92, 246, 0.1);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.ai-chat-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Chat Header */
.ai-chat-header {
    padding: 18px 20px;
    background: rgba(139, 92, 246, 0.15);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-chat-avatar-status {
    position: relative;
}

.ai-chat-avatar-status::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #22c55e;
    border: 2px solid rgba(10, 10, 42, 0.9);
}

.ai-chat-title-container {
    display: flex;
    flex-direction: column;
}

.ai-chat-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.ai-chat-subtitle {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
}

.ai-chat-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-chat-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    opacity: 0.8;
}

.ai-chat-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

/* Chat Message Log */
.ai-chat-messages {
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Chat Messages */
.ai-chat-messages::-webkit-scrollbar {
    width: 5px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
}

.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.4);
}

/* Individual Message Bubbles */
.ai-chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    position: relative;
    animation: bubbleEntrance 0.3s ease-out forwards;
}

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

.ai-chat-bubble.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 0 16px 16px 16px;
}

.ai-chat-bubble.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border-radius: 16px 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bot Recommendation Card styling */
.ai-chat-card-rec {
    margin-top: 10px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    padding: 12px;
}

.ai-chat-card-rec-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 13.5px;
    margin-bottom: 4px;
}

.ai-chat-card-rec-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 8px;
}

.ai-chat-card-rec-btn {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.ai-chat-card-rec-btn:hover {
    background: var(--accent-dark);
    color: #ffffff;
}

/* Typing Indicator Animation */
.ai-chat-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 8px;
    align-items: center;
}

.ai-chat-typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.ai-chat-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-chat-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Prompt Chips (Suggested Actions) */
.ai-chat-chips-container {
    padding: 0 16px 12px 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    flex-shrink: 0;
}

.ai-chat-chips-container::-webkit-scrollbar {
    height: 3px;
}

.ai-chat-chips-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.ai-chat-chip {
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.ai-chat-chip:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.15);
}

/* Input Form Footer */
.ai-chat-footer {
    padding: 12px 16px 16px 16px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(10, 10, 42, 0.4);
    flex-shrink: 0;
}

.ai-chat-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ai-chat-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.ai-chat-input {
    width: 100%;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 30px;
    color: #ffffff;
    font-size: 13.5px;
    outline: none;
    transition: all 0.3s;
}

.ai-chat-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.ai-chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.ai-chat-send-btn:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.5);
}

/* Settings Slide-Over Overlay */
.ai-chat-settings-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ai-chat-settings-panel.active {
    transform: translateX(0);
}

.ai-chat-settings-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding-bottom: 12px;
}

.ai-chat-settings-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ai-chat-settings-close {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.8;
}

.ai-chat-settings-close:hover {
    opacity: 1;
}

.ai-chat-settings-body {
    flex-grow: 1;
}

.ai-chat-settings-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.ai-chat-settings-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-chat-settings-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-chat-settings-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
}

.ai-chat-settings-input:focus {
    border-color: var(--accent);
}

/* Switch Styles */
.ai-chat-settings-switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ai-chat-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.ai-chat-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ai-chat-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.ai-chat-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.ai-chat-switch input:checked + .ai-chat-slider {
    background-color: var(--accent);
}

.ai-chat-switch input:checked + .ai-chat-slider:before {
    transform: translateX(20px);
}

.ai-chat-settings-footer {
    display: flex;
    gap: 12px;
}

.ai-chat-settings-btn {
    flex-grow: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.ai-chat-settings-btn.save {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
}

.ai-chat-settings-btn.save:hover {
    opacity: 0.95;
}

.ai-chat-settings-btn.cancel {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-chat-settings-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile responsive sizing for the chat window */
@media (max-width: 420px) {
    .ai-chat-container {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100%;
        height: 100dvh;
        max-height: 100%;
        max-height: 100dvh;
        border-radius: 0;
        border: none;
    }
    .ai-chat-launcher {
        bottom: 20px;
        right: 20px;
    }
}

/* Chatbot interactive wizard choice buttons */
.ai-chat-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}

.ai-chat-choice-btn {
    width: 100%;
    padding: 10px 14px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.ai-chat-choice-btn:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.15);
}



/* Booking-focused chatbot enhancements */
.ai-chat-chip-primary {
    border-color: rgba(var(--accent-rgb), 0.65) !important;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.32), rgba(var(--accent-rgb), 0.16)) !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.ai-chat-whatsapp-btn {
    background: rgba(34, 197, 94, 0.18) !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
}
.ai-chat-whatsapp-btn:hover {
    background: rgba(34, 197, 94, 0.28) !important;
}
.ai-chat-choices {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.ai-chat-choice-btn {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(var(--accent-rgb), 0.32);
    background: rgba(var(--accent-rgb), 0.10);
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: .2s ease;
}
.ai-chat-choice-btn:hover {
    transform: translateX(3px);
    background: rgba(var(--accent-rgb), 0.22);
}
@media (max-width: 520px) {
    .ai-chat-container {
        right: 10px;
        bottom: 82px;
        width: calc(100vw - 20px);
        height: min(620px, 82vh);
        border-radius: 20px;
    }
    .ai-chat-launcher {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}

/* ===== Celebtree AI — Premium 3D Floating Assistant ===== */
.ai-chat-launcher {
    width: 68px;
    height: 68px;
    right: 24px;
    bottom: 24px;
    z-index: 2147483000 !important;
    border: 1px solid rgba(255,255,255,.35);
    background: radial-gradient(circle at 30% 25%, #c4b5fd 0%, #8b5cf6 32%, #6d28d9 72%, #3b0764 100%);
    box-shadow: 0 14px 40px rgba(0,0,0,.45), 0 8px 30px rgba(139,92,246,.45), inset 0 2px 5px rgba(255,255,255,.4), inset 0 -7px 14px rgba(0,0,0,.25);
    animation: aiFloat 4s ease-in-out infinite, launcherPulse 3s infinite;
    will-change: transform;
}
.ai-chat-launcher::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}
.ai-chat-launcher::after {
    content: 'Need help booking?';
    position: absolute;
    right: 78px;
    bottom: 10px;
    white-space: nowrap;
    padding: 9px 14px;
    border-radius: 14px 14px 4px 14px;
    color: #fff;
    font: 600 11px/1.2 Poppins,sans-serif;
    background: rgba(10,10,42,.88);
    border: 1px solid rgba(139,92,246,.35);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: .96;
    transform: translateY(0);
}
.ai-chat-launcher:hover::after { opacity: 0; transform: translateY(5px); transition: .2s ease; }
.ai-chat-launcher i { font-size: 26px; text-shadow: 0 2px 5px rgba(0,0,0,.35); }
@keyframes aiFloat { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(0,-7px,0)} }

.ai-chat-container {
    z-index: 2147482999 !important;
    width: 400px;
    height: 600px;
    right: 24px;
    bottom: 104px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(18,14,55,.96), rgba(5,4,25,.94));
    border: 1px solid rgba(196,181,253,.28);
    box-shadow: 0 30px 90px rgba(0,0,0,.62), 0 0 55px rgba(139,92,246,.18), inset 0 1px 0 rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform-origin: bottom right;
    will-change: transform, opacity;
}
.ai-chat-header {
    background: linear-gradient(135deg, rgba(139,92,246,.28), rgba(76,29,149,.16));
    padding: 17px 18px;
}
.ai-chat-avatar {
    width: 44px; height: 44px;
    background: radial-gradient(circle at 30% 25%, #ddd6fe, #8b5cf6 38%, #4c1d95 100%);
    box-shadow: inset 0 2px 4px rgba(255,255,255,.4), 0 7px 18px rgba(139,92,246,.35);
}
.ai-chat-title { font-size: 16px; }
.ai-chat-subtitle::after { content: ' • Online'; color:#86efac; }
.ai-chat-messages { overscroll-behavior: contain; }
.ai-chat-bubble { box-shadow: 0 6px 18px rgba(0,0,0,.14); }
.ai-chat-chip, .ai-chat-choice-btn { box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }

@media (max-width: 520px) {
    .ai-chat-container { right: 12px; bottom: 94px; width: calc(100vw - 24px); height: min(620px, calc(100dvh - 110px)); border-radius: 24px; }
    .ai-chat-launcher { right: 18px; bottom: 18px; width: 62px; height: 62px; }
    .ai-chat-launcher::after { right: 70px; }
}
@media (prefers-reduced-motion: reduce) {
    .ai-chat-launcher { animation: none; }
}


/* Performance + responsive refinement */
.ai-chat-container {
    will-change: transform, opacity;
}

@media (max-width: 600px) {
    .ai-chat-launcher {
        width: 50px;
        height: 50px;
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        font-size: 19px;
    }

    .ai-chat-container {
        width: min(340px, calc(100vw - 28px));
        height: min(470px, calc(100dvh - 92px));
        max-height: calc(100dvh - 92px);
        right: 14px;
        bottom: 76px;
        border-radius: 18px;
    }

    .ai-chat-header {
        padding: 12px 14px;
    }

    .ai-chat-avatar {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .ai-chat-title {
        font-size: 14px;
    }

    .ai-chat-subtitle {
        font-size: 10px;
    }

    .ai-chat-messages {
        padding: 12px;
        gap: 10px;
    }

    .ai-chat-bubble {
        max-width: 88%;
        padding: 9px 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .ai-chat-chips-container {
        padding: 8px 10px !important;
        gap: 6px !important;
    }

    .ai-chat-chip {
        font-size: 10px !important;
        padding: 6px 9px !important;
    }

    .ai-chat-footer {
        padding: 8px 10px !important;
    }

    .ai-chat-input {
        font-size: 12px !important;
    }

    .ai-chat-send-btn {
        width: 34px !important;
        height: 34px !important;
    }
}

@media (max-width: 380px) {
    .ai-chat-container {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 70px;
        height: min(440px, calc(100dvh - 82px));
        max-height: calc(100dvh - 82px);
    }

    .ai-chat-launcher {
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ai-chat-launcher,
    .ai-chat-container,
    .ai-chat-bubble {
        animation: none !important;
        transition: none !important;
    }
}

/* Booking summary / action buttons */
.ai-chat-booking-summary { width: 100%; max-width: 100%; box-sizing: border-box; }
.ai-chat-booking-summary .ai-chat-card-rec-desc { margin-bottom: 12px; }
.ai-chat-booking-summary .ai-chat-card-rec-desc > div { margin: 4px 0; }
.ai-chat-summary-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
.ai-chat-summary-actions .ai-chat-card-rec-btn { width: 100%; margin: 0; cursor: pointer; border: 0; }
.ai-chat-whatsapp-btn { background: linear-gradient(135deg, #16a34a, #15803d) !important; color: #fff !important; }
.ai-chat-copy-btn { background: rgba(255,255,255,.10) !important; color: #fff !important; }
.ai-chat-new-btn { background: rgba(139,92,246,.18) !important; color: #fff !important; }
.ai-chat-choices { display: grid; gap: 8px; margin-top: 10px; }
.ai-chat-choice-btn { width: 100%; text-align: left; padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(139,92,246,.25); background: rgba(139,92,246,.10); color: #fff; cursor: pointer; font-family: inherit; font-size: 12px; }
.ai-chat-choice-btn:hover { background: rgba(139,92,246,.20); transform: translateY(-1px); }
@media (max-width: 520px) {
  .ai-chat-container { right: 10px; bottom: 82px; width: calc(100vw - 20px); height: min(620px, 82vh); }
  .ai-chat-launcher { right: 15px; bottom: 15px; }
}
