/**
 * IABT Chatbot Widget Styles
 * 
 * A modern, accessible chat widget using IABT theme colors.
 * Mobile-first responsive design.
 */

/* =========================================
   CSS Custom Properties (Design Tokens)
   Uses IABT theme variables from falar-child
   ========================================= */
:root {
    /* IABT Theme Colors (fallbacks if theme vars not loaded) */
    --iabt-chat-primary: var(--iabt-primary, hsl(214, 83%, 26%));
    --iabt-chat-primary-dark: hsl(214, 83%, 20%);
    --iabt-chat-accent: var(--iabt-accent, hsl(161, 77%, 43%));
    
    /* Backgrounds */
    --iabt-chat-white: var(--iabt-bg-main, #ffffff);
    --iabt-chat-bg-soft: var(--iabt-bg-soft, hsl(216, 45%, 98%));
    --iabt-chat-blue-soft: var(--iabt-blue-soft, hsl(215, 68%, 95%));
    
    /* Text Colors */
    --iabt-chat-text-primary: var(--iabt-text-primary, hsl(222, 47%, 11%));
    --iabt-chat-text-secondary: var(--iabt-text-secondary, hsl(215, 19%, 35%));
    --iabt-chat-muted: var(--iabt-muted, hsl(215, 20%, 65%));
    
    /* Border */
    --iabt-chat-border: var(--iabt-border, hsl(214, 32%, 91%));
    
    /* Status Colors */
    --iabt-chat-success: var(--iabt-success, hsl(142, 76%, 36%));
    --iabt-chat-error: var(--iabt-error, hsl(0, 72%, 51%));
    
    /* Dimensions */
    --iabt-chat-button-size: 60px;
    --iabt-chat-window-width: 420px;
    --iabt-chat-window-height: 600px;
    --iabt-chat-border-radius: 16px;
    --iabt-chat-border-radius-sm: 12px;
    
    /* Shadows */
    --iabt-chat-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    --iabt-chat-shadow-button: 0 4px 20px hsla(214, 83%, 26%, 0.35);
    
    /* Transitions */
    --iabt-chat-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --iabt-chat-z-index: 999999;
}

/* =========================================
   Base Widget Container
   ========================================= */
.iabt-chatbot {
    position: fixed;
    z-index: var(--iabt-chat-z-index);
    font-family: var(--iabt-font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif);
    font-size: var(--iabt-text-sm);
    line-height: var(--iabt-line-height-body);
    box-sizing: border-box;
}

.iabt-chatbot *,
.iabt-chatbot *::before,
.iabt-chatbot *::after {
    box-sizing: inherit;
}

/* Position Variants */
.iabt-chatbot--bottom-right {
    bottom: 20px;
    right: 20px;
}

.iabt-chatbot--bottom-left {
    bottom: 20px;
    left: 20px;
}

/* =========================================
   Chat Toggle Button
   ========================================= */
.iabt-chatbot__button {
    position: relative;
    width: var(--iabt-chat-button-size);
    height: var(--iabt-chat-button-size);
    border-radius: 50%;
    border: none;
    background: var(--iabt-chat-primary);
    color: var(--iabt-chat-white);
    cursor: pointer;
    box-shadow: var(--iabt-chat-shadow-button);
    transition: transform var(--iabt-chat-transition), box-shadow var(--iabt-chat-transition), background var(--iabt-chat-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.iabt-chatbot__button:hover {
    transform: scale(1.08);
    background: var(--iabt-chat-accent);
    box-shadow: 0 6px 30px hsla(161, 77%, 43%, 0.4);
}

.iabt-chatbot__button:focus-visible {
    outline: 3px solid var(--iabt-chat-blue-soft);
    outline-offset: 2px;
}

.iabt-chatbot__button:active {
    transform: scale(0.95);
}

/* Button Icons */
.iabt-chatbot__button-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--iabt-chat-transition), transform var(--iabt-chat-transition);
}

.iabt-chatbot__button-icon--chat {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.iabt-chatbot__button-icon--close {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

/* Button state when chat is open */
.iabt-chatbot.is-open .iabt-chatbot__button-icon--chat {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.iabt-chatbot.is-open .iabt-chatbot__button-icon--close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Notification Badge */
.iabt-chatbot__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--iabt-chat-error);
    color: var(--iabt-chat-white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iabt-badge-pulse 2s infinite;
}

@keyframes iabt-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =========================================
   Chat Window
   ========================================= */
.iabt-chatbot__window {
    position: absolute;
    bottom: calc(var(--iabt-chat-button-size) + 16px);
    width: var(--iabt-chat-window-width);
    height: var(--iabt-chat-window-height);
    max-height: min(700px, 80vh);
    background: var(--iabt-chat-white);
    border-radius: var(--iabt-chat-border-radius);
    box-shadow: var(--iabt-chat-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity var(--iabt-chat-transition), 
                visibility var(--iabt-chat-transition), 
                transform var(--iabt-chat-transition);
}

/* Position adjustment for window */
.iabt-chatbot--bottom-right .iabt-chatbot__window {
    right: 0;
}

.iabt-chatbot--bottom-left .iabt-chatbot__window {
    left: 0;
}

/* Open state */
.iabt-chatbot.is-open .iabt-chatbot__window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* =========================================
   Header
   ========================================= */
.iabt-chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--iabt-chat-primary);
    color: var(--iabt-chat-white);
    flex-shrink: 0;
}

.iabt-chatbot__header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.iabt-chatbot__avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iabt-chatbot__header-text {
    display: flex;
    flex-direction: column;
}

.iabt-chatbot__title {
    font-size: 16px;
    font-weight: 600;
}

.iabt-chatbot__status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.iabt-chatbot__status-dot {
    width: 8px;
    height: 8px;
    background: var(--iabt-chat-success);
    border-radius: 50%;
    animation: iabt-status-pulse 2s infinite;
}

@keyframes iabt-status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header Actions */
.iabt-chatbot__header-actions {
    display: flex;
    gap: 8px;
}

.iabt-chatbot__action {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    color: var(--iabt-chat-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--iabt-chat-transition);
}

.iabt-chatbot__action:hover {
    background: rgba(255, 255, 255, 0.25);
}

.iabt-chatbot__action:focus-visible {
    outline: 2px solid var(--iabt-chat-white);
    outline-offset: 2px;
}

/* =========================================
   Messages Container
   ========================================= */
.iabt-chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--iabt-chat-bg-soft);
    scrollbar-width: thin;
    scrollbar-color: var(--iabt-chat-muted) transparent;
}
/* =========================================
   Message Font
   ========================================= */
.iabt-chatbot__message-bubble, .iabt-chatbot__message-bubble p {
    color: inherit;
    font-size: var(--iabt-text-sm);
}


/* Scrollbar Styling */
.iabt-chatbot__messages::-webkit-scrollbar {
    width: 6px;
    display: block;
}

.iabt-chatbot__messages::-webkit-scrollbar-track {
    background: transparent;
}

.iabt-chatbot__messages::-webkit-scrollbar-thumb {
    background: var(--iabt-chat-border);
    border-radius: 3px;
}

.iabt-chatbot__messages::-webkit-scrollbar-thumb:hover {
    background: var(--iabt-chat-muted);
}


/* =========================================
   Message Bubbles
   ========================================= */
.iabt-chatbot__message {
    display: flex;
    gap: 16px;
    max-width: 85%;
    animation: iabt-message-appear 0.3s ease-out;
}

@keyframes iabt-message-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* User Messages */
.iabt-chatbot__message--user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.iabt-chatbot__message--user .iabt-chatbot__message-bubble {
    background: var(--iabt-chat-primary);
    color: var(--iabt-chat-white);
    border-radius: var(--iabt-chat-border-radius-sm) var(--iabt-chat-border-radius-sm) 4px var(--iabt-chat-border-radius-sm);
}

/* Assistant Messages */
.iabt-chatbot__message--assistant {
    align-self: flex-start;
}

.iabt-chatbot__message--assistant .iabt-chatbot__message-bubble {
    background: var(--iabt-chat-white);
    color: var(--iabt-chat-text-primary);
    border-radius: var(--iabt-chat-border-radius-sm) var(--iabt-chat-border-radius-sm) var(--iabt-chat-border-radius-sm) 4px;
    border: 1px solid var(--iabt-chat-border);
}

.iabt-chatbot__message-avatar {
    width: 24px;
    height: 24px;
    background: var(--iabt-chat-blue-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--iabt-chat-primary);
}

.iabt-chatbot__message-bubble {
    padding: 10px 14px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.iabt-chatbot__message-time {
    font-size: 11px;
    color: var(--iabt-chat-muted);
    margin-top: 2px;
}

/* =========================================
   Typing Indicator
   ========================================= */
.iabt-chatbot__typing {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 10px;
    background: var(--iabt-chat-bg-soft);
}

.iabt-chatbot__typing-avatar {
    width: 28px;
    height: 28px;
    background: var(--iabt-chat-blue-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iabt-chat-primary);
}

.iabt-chatbot__typing-dots {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--iabt-chat-white);
    border-radius: var(--iabt-chat-border-radius-sm);
    border: 1px solid var(--iabt-chat-border);
}

.iabt-chatbot__typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--iabt-chat-muted);
    border-radius: 50%;
    animation: iabt-typing-bounce 1.4s infinite ease-in-out;
}

.iabt-chatbot__typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.iabt-chatbot__typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.iabt-chatbot__typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes iabt-typing-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
}

/* =========================================
   Input Footer
   ========================================= */
.iabt-chatbot__footer {
    padding: 8px;
    border-top: 1px solid var(--iabt-chat-border);
    background: var(--iabt-chat-white);
    flex-shrink: 0;
}

.iabt-chatbot__input-wrapper {
    display: flex;
    align-items: center;
    background: var(--iabt-chat-bg-soft);
    border: 1px solid var(--iabt-chat-border);
    border-radius: var(--iabt-chat-border-radius-sm);
    padding: 8px 12px;
    transition: border-color var(--iabt-chat-transition), box-shadow var(--iabt-chat-transition);
}

.iabt-chatbot__input-wrapper:focus-within {
    border-color: var(--iabt-chat-primary);
    box-shadow: 0 0 0 3px var(--iabt-chat-blue-soft);
}

.iabt-chatbot__input {
    flex: 1;
    border: none;
    background: transparent;
    resize: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: var(--iabt-chat-text-primary);
    max-height: 100px;
    outline: none;
}

.iabt-chatbot__input::placeholder {
    color: var(--iabt-chat-muted);
}

.iabt-chatbot__send {
    align-self: flex-end;
    width: 36px;
    height: 36px;
    border: none;
    color: var(--iabt-chat-primary);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--iabt-chat-transition);
}

.iabt-chatbot__send:hover:not(:disabled) {
    transform: scale(1.05);
}

.iabt-chatbot__send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.iabt-chatbot__send:focus-visible {
    outline: 3px solid var(--iabt-chat-blue-soft);
    outline-offset: 2px;
}

/* =========================================
   Expand Button Icons
   ========================================= */
.iabt-chatbot__expand-icon {
    position: absolute;
    transition: opacity var(--iabt-chat-transition), transform var(--iabt-chat-transition);
}

.iabt-chatbot__expand-icon--expand {
    opacity: 1;
    transform: scale(1);
}

.iabt-chatbot__expand-icon--collapse {
    opacity: 0;
    transform: scale(0.5);
}

/* Expanded state icon swap */
.iabt-chatbot.is-expanded .iabt-chatbot__expand-icon--expand {
    opacity: 0;
    transform: scale(0.5);
}

.iabt-chatbot.is-expanded .iabt-chatbot__expand-icon--collapse {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   Expanded/Fullscreen State
   ========================================= */
/* Lock body scroll when expanded */
body.iabt-chatbot-expanded {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.iabt-chatbot.is-expanded .iabt-chatbot__window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    z-index: var(--iabt-chat-z-index);
}

/* Hide the main toggle button when expanded */
.iabt-chatbot.is-expanded .iabt-chatbot__button {
    display: none;
}

/* Adjust header padding in expanded mode */
.iabt-chatbot.is-expanded .iabt-chatbot__header {
    padding: 12px 20px;
}

/* Larger messages area in expanded mode */
.iabt-chatbot.is-expanded .iabt-chatbot__messages {
    padding: 20px;
}

/* Larger footer in expanded mode */
.iabt-chatbot.is-expanded .iabt-chatbot__footer {
    padding: 12px 20px;
}

/* Center messages better in expanded mode */
.iabt-chatbot.is-expanded .iabt-chatbot__message {
    max-width: min(85%, 800px);
}

/* Show scrollbar in expanded mode */
.iabt-chatbot.is-expanded .iabt-chatbot__messages {
    scrollbar-width: thin;
    scrollbar-color: var(--iabt-chat-muted) transparent;
}

.iabt-chatbot.is-expanded .iabt-chatbot__messages::-webkit-scrollbar {
    width: 8px;
    display: block;
}

.iabt-chatbot.is-expanded .iabt-chatbot__messages::-webkit-scrollbar-track {
    background: transparent;
}

.iabt-chatbot.is-expanded .iabt-chatbot__messages::-webkit-scrollbar-thumb {
    background: var(--iabt-chat-muted);
    border-radius: 4px;
}

.iabt-chatbot.is-expanded .iabt-chatbot__messages::-webkit-scrollbar-thumb:hover {
    background: var(--iabt-chat-text-secondary);
}

/* =========================================
   Mobile Responsive
   ========================================= */
@media (max-width: 480px) {
    .iabt-chatbot {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
    }
    
    .iabt-chatbot__button {
        position: fixed;
        bottom: 16px;
        right: 16px;
    }
    
    .iabt-chatbot.is-open .iabt-chatbot__button {
        display: none;
    }
    
    .iabt-chatbot__window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: translateY(100%);
    }
    
    .iabt-chatbot.is-open .iabt-chatbot__window {
        transform: translateY(0);
    }
    
    .iabt-chatbot__header {
        padding: 16px;
        padding-top: max(16px, env(safe-area-inset-top));
    }
    
    .iabt-chatbot__footer {
        padding: 16px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
}

/* =========================================
   Reduced Motion
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    .iabt-chatbot,
    .iabt-chatbot * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   Staff Contact Card (Handover)
   ========================================= */
.iabt-chatbot__staff-card {
    background: linear-gradient(135deg, var(--iabt-chat-white), var(--iabt-chat-blue-soft));
    border: 1px solid var(--iabt-chat-border);
    border-radius: var(--iabt-chat-border-radius-sm);
    padding: 16px;
    margin: 8px 0;
    animation: iabt-message-appear 0.3s ease-out;
    max-width: 90%;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.iabt-chatbot__staff-header {
    margin-bottom: 12px;
}

.iabt-chatbot__staff-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--iabt-chat-text-primary);
}

.iabt-chatbot__staff-role {
    font-size: 13px;
    color: var(--iabt-chat-text-secondary);
    margin-top: 2px;
}

.iabt-chatbot__staff-langs {
    font-size: 13px;
    color: var(--iabt-chat-text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.iabt-chatbot__staff-label {
    font-size: 14px;
}

.iabt-chatbot__staff-match {
    font-size: 12px;
    color: var(--iabt-chat-accent);
    font-weight: 500;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: rgba(36, 180, 126, 0.1);
    border-radius: 6px;
}

.iabt-chatbot__staff-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.iabt-chatbot__staff-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: transform var(--iabt-chat-transition), 
                box-shadow var(--iabt-chat-transition);
    cursor: pointer;
}

.iabt-chatbot__staff-contact-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.iabt-chatbot__staff-contact-btn span {
    white-space: nowrap;
}

.iabt-chatbot__staff-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* WhatsApp */
.iabt-chatbot__staff-contact-btn--whatsapp {
    background: #25D366;
    color: white;
}

.iabt-chatbot__staff-contact-btn--whatsapp:hover {
    background: #1fb855;
}

/* WeChat */
.iabt-chatbot__staff-contact-btn--wechat {
    background: #07C160;
    color: white;
}

.iabt-chatbot__staff-contact-btn--wechat:hover {
    background: #06a953;
}

/* Email */
.iabt-chatbot__staff-contact-btn--email {
    background: var(--iabt-chat-primary);
    color: white;
}

.iabt-chatbot__staff-contact-btn--email:hover {
    background: var(--iabt-chat-primary-dark);
}

/* Telegram */
.iabt-chatbot__staff-contact-btn--telegram {
    background: #0088cc;
    color: white;
}

.iabt-chatbot__staff-contact-btn--telegram:hover {
    background: #0077b5;
}

/* Instagram */
.iabt-chatbot__staff-contact-btn--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.iabt-chatbot__staff-contact-btn--instagram:hover {
    filter: brightness(1.1);
}

/* TikTok */
.iabt-chatbot__staff-contact-btn--tiktok {
    background: #000000;
    color: white;
}

.iabt-chatbot__staff-contact-btn--tiktok:hover {
    background: #333333;
}

/* Facebook Messenger */
.iabt-chatbot__staff-contact-btn--facebook-messenger {
    background: #006AFF;
    color: white;
}

.iabt-chatbot__staff-contact-btn--facebook-messenger:hover {
    background: #0056cc;
}


/* Phone */
.iabt-chatbot__staff-contact-btn--phone {
    background: var(--iabt-chat-text-secondary);
    color: white;
}

.iabt-chatbot__staff-contact-btn--phone:hover {
    background: var(--iabt-chat-text-primary);
}

/* =========================================
   Markdown Content Styling (in message bubbles)
   ========================================= */
.iabt-chatbot__message-bubble p {
    margin: 0 0 0.5em;
}

.iabt-chatbot__message-bubble p:last-child {
    margin-bottom: 0;
}

.iabt-chatbot__message-bubble strong {
    font-weight: 600;
}

.iabt-chatbot__message-bubble em {
    font-style: italic;
}

.iabt-chatbot__message-bubble code {
    background: var(--iabt-chat-blue-soft);
    padding: 2px 5px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.9em;
}

.iabt-chatbot__message-bubble pre {
    background: var(--iabt-chat-bg-soft);
    border: 1px solid var(--iabt-chat-border);
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
}

.iabt-chatbot__message-bubble pre code {
    background: transparent;
    padding: 0;
    font-size: 0.85em;
}

.iabt-chatbot__message-bubble ul,
.iabt-chatbot__message-bubble ol {
    margin: 0px 0px 0.5em;
    padding-left: 12px;
    white-space: normal;
}

.iabt-chatbot__message-bubble li {
    margin-bottom: 4px;
}

.iabt-chatbot__message-bubble li:last-child {
    margin-bottom: 0;
}

.iabt-chatbot__message-bubble a {
    color: var(--iabt-chat-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.iabt-chatbot__message-bubble a:hover {
    text-decoration-thickness: 2px;
}

/* Ensure links in user messages (primary bg) are visible */
.iabt-chatbot__message--user .iabt-chatbot__message-bubble a {
    color: var(--iabt-chat-white);
}

/* =========================================
   Print Styles
   ========================================= */
@media print {
    .iabt-chatbot {
        display: none !important;
    }
}
