/* CSS Variables matching the design system */
:root {
    /* ===== YOUR ORIGINAL PALETTE ===== */
    --color-primary-50: #fef9f0;
    --color-primary-100: #fdf3e0;
    --color-primary-200: #fbe7c1;
    --color-primary-300: #f9d89d;
    --color-primary-400: #e5b857;
    --color-primary-500: #cf9b30;
    --color-primary-600: #b88628;

    --color-background-1: #fcfcfd;
    --color-background-2: #fefdfb;
    --color-background-3: #fdf9f3;
    --color-background-4: #fcf6ed;

    --color-stroke-1: #ebe5df;
    --color-stroke-2: #ede9e3;

    /* ===== SEMANTIC ===== */
    --chatbot-primary: var(--color-primary-500);
    --chatbot-primary-foreground: #ffffff;
    --chatbot-background: var(--color-background-1);
    --chatbot-foreground: #1a1a1c;
    --chatbot-card: #ffffff;
    --chatbot-card-foreground: #1a1a1c;
    --chatbot-muted: var(--color-primary-50);
    --chatbot-muted-foreground: #6b6b6b;
    --chatbot-border: var(--color-stroke-1);
    --chatbot-success: #c6f56f;
    --chatbot-radius: 0.625rem;
    --chatbot-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.chat-body {
    font-family: ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";

    --font-sans: ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";

    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco,
        Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Floating Button */
.chatbot-floating-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
}

.chatbot-blob-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(207, 155, 48, 0.2);
    animation: chatbot-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.chatbot-blob-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(207, 155, 48, 0.3);
    animation: chatbot-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    animation-delay: 200ms;
}

.chatbot-toggle-btn {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: chatbot-bounce-slow 3s ease-in-out infinite;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.chatbot-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chatbot-toggle-btn:hover .chatbot-avatar-img {
    transform: rotate(12deg) scale(1.1);
}

.chatbot-shine-effect {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chatbot-toggle-btn:hover .chatbot-shine-effect {
    opacity: 1;
}

.chatbot-online-indicator {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.chatbot-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--chatbot-success);
    opacity: 0.75;
    animation: chatbot-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.chatbot-dot {
    position: relative;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid var(--chatbot-background);
    background: var(--chatbot-success);
}

/* Modal */
.chatbot-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.chatbot-modal.hidden {
    display: none;
}

.chatbot-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.chatbot-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 90vh;
    width: 100%;
    max-width: 56rem;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--chatbot-border);
    background: var(--chatbot-background);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--chatbot-border);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
    .chatbot-header {
        padding: 0.75rem 1.5rem;
    }
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .chatbot-header-left {
        gap: 1rem;
    }
}

.chatbot-avatar-container {
    position: relative;
}

.chatbot-avatar-btn {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: chatbot-bounce-slow 3s ease-in-out infinite;
}

@media (min-width: 640px) {
    .chatbot-avatar-btn {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (min-width: 768px) {
    .chatbot-avatar-btn {
        width: 4rem;
        height: 4rem;
    }
}

.chatbot-header-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chatbot-avatar-btn:hover .chatbot-header-avatar {
    transform: rotate(12deg) scale(1.1);
}

.chatbot-avatar-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chatbot-avatar-btn:hover .chatbot-avatar-shine {
    opacity: 1;
}

.chatbot-avatar-online {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.75rem;
    height: 0.75rem;
}

@media (min-width: 640px) {
    .chatbot-avatar-online {
        width: 1rem;
        height: 1rem;
    }
}

.chatbot-avatar-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--chatbot-success);
    opacity: 0.75;
    animation: chatbot-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.chatbot-avatar-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: 2px solid var(--chatbot-background);
    background: var(--chatbot-success);
}

@media (min-width: 640px) {
    .chatbot-avatar-dot {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.chatbot-header-info {
    display: flex;
    flex-direction: column;
}

.chatbot-header-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--chatbot-foreground);
}

@media (min-width: 640px) {
    .chatbot-header-title {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .chatbot-header-title {
        font-size: 1.25rem;
    }
}

.chatbot-header-status {
    font-size: 0.625rem;
    color: var(--chatbot-muted-foreground);
}

@media (min-width: 640px) {
    .chatbot-header-status {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .chatbot-header-status {
        font-size: 0.875rem;
    }
}

.chatbot-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--chatbot-foreground);
    transition: background-color 0.2s ease;
}

.chatbot-close-btn:hover {
    background: #cf9b30;
}

/* Messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chatbot-messages::-webkit-scrollbar {
    display: none;
}

@media (min-width: 640px) {
    .chatbot-messages {
        padding: 1rem 0.75rem;
    }
}

.chatbot-messages-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    animation: chatbot-fade-in 0.5s ease;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.chatbot-message.bot {
    justify-content: flex-start;
}

.chatbot-message-content {
    display: flex;
    max-width: 95%;
    gap: 0.375rem;
}

@media (min-width: 640px) {
    .chatbot-message-content {
        gap: 0.5rem;
    }
}

.chatbot-message.user .chatbot-message-content {
    flex-direction: row-reverse;
}

.chatbot-message-avatar {
    margin-top: 0.125rem;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--chatbot-border);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .chatbot-message-avatar {
        width: 2rem;
        height: 2rem;
    }
}

.chatbot-message.bot .chatbot-message-avatar {
    background: rgba(207, 155, 48, 0.1);
}

.chatbot-message.user .chatbot-message-avatar {
    background: var(--chatbot-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-message-bubble-wrapper {
    flex: 1;
    min-width: 0;
}

.chatbot-message-bubble {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--chatbot-foreground);
}

@media (min-width: 640px) {
    .chatbot-message-bubble {
        padding: 0.625rem 1rem;
    }
}

.chatbot-message.bot .chatbot-message-bubble {
    background: var(--chatbot-card);
    border: 1px solid var(--chatbot-border);
    border-top-left-radius: 0;
}

.chatbot-message.user .chatbot-message-bubble {
    background: var(--chatbot-primary);
    color: var(--chatbot-primary-foreground);
    border-top-right-radius: 0;
}

.chatbot-message-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.chatbot-message-content:hover .chatbot-message-meta {
    opacity: 1;
}

.chatbot-message.user .chatbot-message-meta {
    flex-direction: row-reverse;
}

.chatbot-message-time {
    font-size: 0.5625rem;
    color: var(--chatbot-muted-foreground);
}

.chatbot-message-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.125rem;
    border-radius: 0.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.chatbot-message-copy-btn:hover {
    background: var(--chatbot-muted);
}

.chatbot-message-copy-btn svg {
    width: 0.625rem;
    height: 0.625rem;
    color: var(--chatbot-muted-foreground);
}

.chatbot-message-copy-btn.copied svg {
    color: var(--chatbot-success);
}

/* Typing Indicator */
.chatbot-typing-indicator {
    display: flex;
    justify-content: flex-start;
}

.chatbot-typing-indicator.hidden {
    display: none;
}

.chatbot-typing-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--chatbot-border);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(207, 155, 48, 0.1);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .chatbot-typing-avatar {
        width: 2rem;
        height: 2rem;
    }
}

.chatbot-typing-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-typing-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-left: 0.375rem;
}

@media (min-width: 640px) {
    .chatbot-typing-content {
        margin-left: 0.5rem;
    }
}

.chatbot-typing-bubble {
    border-radius: 1rem;
    border-top-left-radius: 0;
    border: 1px solid var(--chatbot-border);
    background: var(--chatbot-card);
    padding: 0.5rem 0.75rem;
}

@media (min-width: 640px) {
    .chatbot-typing-bubble {
        padding: 0.75rem 1rem;
    }
}

.chatbot-typing-dots {
    display: flex;
    gap: 0.25rem;
}

.chatbot-dot-animate {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--chatbot-primary);
    animation: chatbot-bounce 0.6s ease-in-out infinite;
}

.chatbot-dot-animate:nth-child(1) {
    animation-delay: 0ms;
}

.chatbot-dot-animate:nth-child(2) {
    animation-delay: 150ms;
}

.chatbot-dot-animate:nth-child(3) {
    animation-delay: 300ms;
}

.chatbot-typing-text {
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--chatbot-primary);
}

@media (min-width: 640px) {
    .chatbot-typing-text {
        font-size: 0.625rem;
    }
}

.chatbot-scroll-indicator {
    position: sticky;
    bottom: 0;
    left: -0.5rem;
    right: -0.5rem;
    height: 3rem;
    background: linear-gradient(to top, var(--chatbot-background), transparent);
    pointer-events: none;
}

@media (min-width: 640px) {
    .chatbot-scroll-indicator {
        left: -0.75rem;
        right: -0.75rem;
    }
}

/* Input Section */
.chatbot-input-section {
    flex-shrink: 0;
    border-top: 1px solid var(--chatbot-border);
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
    .chatbot-input-section {
        padding: 1.5rem;
    }
}

.chatbot-input-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Quick Questions */
.chatbot-quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chatbot-quick-questions.hidden {
    display: none;
}

.chatbot-quick-question-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 9999px;
    border: 1px solid var(--chatbot-border);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--chatbot-foreground);
}

.chatbot-quick-question-btn:hover {
    background: rgba(207, 155, 48, 0.05);
    color: var(--chatbot-primary);
}

.chatbot-quick-question-btn svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Suggestions */
.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chatbot-suggestions.hidden {
    display: none;
}

.chatbot-suggestion-btn {
    display: flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(207, 155, 48, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(207, 155, 48, 0.05);
    color: var(--chatbot-primary);
}

.chatbot-suggestion-btn:hover {
    background: rgba(207, 155, 48, 0.1);
    border-color: rgba(207, 155, 48, 0.5);
}

.chatbot-suggestion-btn.selected {
    border-color: var(--chatbot-primary);
    background: var(--chatbot-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(207, 155, 48, 0.2);
}

.chatbot-suggestion-btn:active {
    transform: scale(0.95);
}

/* Recording UI */
.chatbot-recording-ui {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--chatbot-muted);
    border-radius: 0.75rem;
    border: 1px solid var(--chatbot-border);
}

.chatbot-recording-ui.hidden {
    display: none;
}

.chatbot-recording-visual {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chatbot-recording-bar {
    width: 0.25rem;
    height: 1rem;
    border-radius: 9999px;
    background: rgba(113, 113, 122, 0.3);
    transition: all 0.15s ease;
}

.chatbot-recording-bar.active {
    background: var(--chatbot-primary);
    animation: chatbot-pulse 0.15s ease-in-out infinite;
}

.chatbot-recording-time {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--chatbot-muted-foreground);
    min-width: 3.125rem;
}

.chatbot-recording-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-recording-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-recording-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chatbot-recording-cancel {
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
    background: transparent;
}

.chatbot-recording-cancel:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.chatbot-recording-confirm {
    border-color: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    background: transparent;
}

.chatbot-recording-confirm:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.chatbot-recording-confirm:disabled {
    opacity: 0.5;
}

/* Input Wrapper */
.chatbot-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-input-wrapper.hidden {
    display: none;
}

.chatbot-input-relative {
    position: relative;
    flex: 1;
}

.chatbot-input {
    width: 100%;
    height: 2.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--chatbot-border);
    background: var(--chatbot-background);
    padding: 0 2.5rem 0 1rem;
    font-size: 0.875rem;
    color: var(--chatbot-foreground);
    outline: none;
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    border-color: var(--chatbot-primary);
    box-shadow: 0 0 0 2px rgba(207, 155, 48, 0.1);
}

.chatbot-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chatbot-input-hint {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    gap: 0.125rem;
    border-radius: 0.25rem;
    border: 1px solid var(--chatbot-border);
    background: var(--chatbot-muted);
    padding: 0.125rem 0.375rem;
    font-size: 0.625rem;
    color: var(--chatbot-muted-foreground);
}

@media (min-width: 640px) {
    .chatbot-input-hint {
        display: flex;
    }
}

.chatbot-recording-indicator {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-recording-indicator.hidden {
    display: none;
}

.chatbot-recording-dots {
    display: flex;
    gap: 0.125rem;
}

.chatbot-recording-dot {
    width: 0.25rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.8);
    animation: chatbot-bounce 0.6s ease-in-out infinite;
}

.chatbot-recording-dot:nth-child(2) {
    animation-delay: 150ms;
}

.chatbot-recording-dot:nth-child(3) {
    animation-delay: 300ms;
}

.chatbot-recording-time-input {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(34, 197, 94, 0.7);
}

/* Buttons */
.chatbot-mic-btn,
.chatbot-send-btn,
.chatbot-new-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--chatbot-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chatbot-mic-btn:hover,
.chatbot-new-chat-btn:hover {
    background: #cf9b30;
}

.chatbot-mic-btn:disabled,
.chatbot-send-btn:disabled,
.chatbot-new-chat-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chatbot-mic-btn.recording {
    background: rgba(34, 197, 94, 0.9);
    border-color: rgba(34, 197, 94, 0.8);
    animation: chatbot-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.chatbot-mic-btn.recording:hover {
    background: rgba(34, 197, 94, 1);
}

.chatbot-mic-icon,
.chatbot-mic-off-icon {
    color: var(--chatbot-foreground);
}

.chatbot-mic-off-icon {
    display: none;
}

.chatbot-mic-btn.recording .chatbot-mic-icon {
    display: none;
}

.chatbot-mic-btn.recording .chatbot-mic-off-icon {
    display: block;
    color: white;
}

.chatbot-send-btn {
    background: var(--chatbot-primary);
    border: none;
    color: var(--chatbot-primary-foreground);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.chatbot-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
}

.chatbot-send-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.chatbot-footer-text {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--chatbot-muted-foreground);
}

/* Animations */
@keyframes chatbot-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes chatbot-ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes chatbot-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25%);
    }
}

@keyframes chatbot-bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10%);
    }
}

@keyframes chatbot-fade-in {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}