#rtc-fab {
    position: fixed;
    bottom: 18px;
    right: 16px;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 0;
    background: #4c3561;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#rtc-fab:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

#rtc-fab:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

#rtc-fab.is-hidden {
    display: none;
}

.rtc-fab-mark {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.rtc-fab-bubble {
    position: absolute;
    right: -2px;
    top: -2px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #d63f5f;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}

#rtc-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(440px, 100vw);
    height: 100dvh;
    max-height: 100dvh;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

#rtc-wrapper.is-hidden {
    display: none;
}

#rtc-ui {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rtc_header {
    background: #4c3561;
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-height: 64px;
}

.rtc_header img {
    max-height: 38px;
    margin-right: 10px;
}

.rtc_header_title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rtc_close {
    margin-left: 8px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    padding: 0 8px;
}

.rtc_clear {
    margin-left: auto;
    background: #fff;
    border: 1px solid #fff;
    color: #4c3561;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1;
    padding: 7px 12px;
    font-weight: 600;
    cursor: pointer;
}

.rtc_clear:hover {
    background: #f7f4ff;
}

.rtc_langbar {
    display: flex;
    gap: 4px;
    padding: 8px;
    flex-wrap: wrap;
    background: #f3f0f6;
    flex-shrink: 0;
}

.rtc_langbar button {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.rtc_langbar button.active {
    background: #4c3561;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

.rtc-lang-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    flex-direction: row;
}

.rtc_welcome {
    font-size: 13px;
    padding: 10px 12px;
    background: #eef6fb;
    color: #2f2340;
    line-height: 1.5;
    white-space: normal;
    flex-shrink: 0;
}

.rtc_messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f7f7f7;
    min-height: 0;
}

.rtc_msg {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 18px;
    line-height: 1.45;
    word-break: break-word;
    font-size: 14px;
}

.rtc_msg a {
    color: #674885;
    text-decoration: underline;
    cursor: pointer;
}

.rtc_user {
    background: #e0f0ff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.rtc_bot {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.rtc-suggestion {
    display: inline-block;
    margin: 7px 7px 0 0;
    padding: 8px 12px;
    border: 1px solid #674885;
    border-radius: 999px;
    background: #674885;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.rtc-suggestion:disabled {
    opacity: 0.55;
    cursor: default;
}

.rtc_input_area {
    padding: 10px;
    display: flex;
    gap: 8px;
    border-top: 1px solid #d8d8d8;
    background: #fff;
    flex-shrink: 0;
}

.rtc_input_area input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 20px;
    border: 1px solid #cfcfcf;
    font-size: 14px;
}

.rtc_input_area button {
    background: #4c3561;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 40px;
}

.rtc_lang_select {
    display: none;
}

.rtc_preview_bubble {
    position: fixed;
    bottom: 104px;
    right: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    padding: 14px 34px 14px 16px;
    z-index: 10000;
    width: min(340px, calc(100vw - 24px));
    border: 1px solid rgba(76, 53, 97, 0.2);
    line-height: 1.35;
}

.rtc_preview_bubble::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -10px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-right: 1px solid rgba(76, 53, 97, 0.2);
    border-bottom: 1px solid rgba(76, 53, 97, 0.2);
    transform: rotate(45deg);
}

.rtc_preview_bubble.is-hidden {
    display: none;
}

.rtc-preview-content {
    position: relative;
    font-size: 15px;
    color: #2f2340;
    font-weight: 600;
}

.rtc-preview-close {
    position: absolute;
    top: -6px;
    right: -24px;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #4c3561;
    padding: 2px 4px;
}

.rtc_footer {
    font-size: 11px;
    padding: 12px;
    text-align: center;
    background: #f9f9f9;
    flex-shrink: 0;
    z-index: 9989;
}

.rtc-agent {
    --rtc-agent-brand: #4c3561;
    --rtc-agent-brand-dark: var(--rtc-chat-text, #2f2340);
    --rtc-agent-accent: #d63f5f;
    --rtc-agent-soft: #f3f0f6;
    --rtc-agent-cta: var(--rtc-chat-cta, #fff15a);
    --rtc-agent-cta-hover: #f4df38;
    --rtc-agent-border: var(--rtc-chat-border, #ded8dc);
    --rtc-agent-ink: var(--rtc-chat-text, #08080a);
    --rtc-agent-muted: var(--rtc-chat-muted, #56515b);
    --rtc-agent-panel: var(--rtc-chat-panel, #fff);
    background: var(--rtc-chat-bg, #fff);
    color: var(--rtc-agent-ink);
    color-scheme: var(--rtc-color-scheme, light);
    font-family: inherit;
    padding: clamp(24px, 5vw, 56px) 0;
}

.rtc-agent__shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.rtc-agent__intro {
    max-width: 780px;
    margin-bottom: 20px;
}

.rtc-agent__intro h2 {
    margin: 0 0 12px;
    color: var(--rtc-agent-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: 0;
}

.rtc-agent__intro p {
    margin: 0;
    color: var(--rtc-agent-muted);
    font-size: 17px;
    line-height: 1.6;
}

.rtc-agent__eyebrow {
    margin: 0 0 8px !important;
    color: var(--rtc-agent-ink) !important;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rtc-agent__steps {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 18px;
}

.rtc-agent__steps span {
    flex: 0 0 auto;
    border: 1px solid var(--rtc-agent-border);
    border-radius: 999px;
    color: var(--rtc-agent-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 9px 12px;
    white-space: nowrap;
}

.rtc-agent__steps .is-active {
    background: var(--rtc-agent-cta);
    border-color: var(--rtc-agent-cta);
    color: var(--rtc-chat-cta-text, #08080a);
}

.rtc-agent__steps .is-done {
    background: transparent;
    border-color: var(--rtc-agent-cta);
    color: var(--rtc-agent-ink);
}

.rtc-agent__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 18px;
    align-items: start;
}

.rtc-agent__chat,
.rtc-agent__audit,
.rtc-agent__lead {
    background: var(--rtc-agent-panel);
    border: 1px solid var(--rtc-agent-border);
    border-radius: 2px;
    box-shadow: none;
}

.rtc-agent__chat {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    overflow: hidden;
}

.rtc-agent__messages {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
    overflow-y: auto;
    padding: 18px;
    background: var(--rtc-chat-messages, #fbfaf7);
}

.rtc-agent__message {
    max-width: 86%;
    border-radius: 2px;
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 14px;
    word-break: break-word;
}

.rtc-agent__message--agent {
    align-self: flex-start;
    background: var(--rtc-chat-bot, #fff);
    border-left: 4px solid var(--rtc-agent-cta);
}

.rtc-agent__message--user {
    align-self: flex-end;
    background: var(--rtc-chat-user, var(--rtc-agent-cta));
    color: var(--rtc-chat-cta-text, #08080a);
}

.rtc-agent__message.is-pending {
    color: var(--rtc-agent-muted);
    font-style: italic;
}

.rtc-agent__message--audit {
    max-width: 94%;
    width: min(560px, 94%);
}

.rtc-agent__message--audit .rtc-agent__audit-summary {
    margin-bottom: 10px;
}

.rtc-agent__suggestions {
    background: var(--rtc-agent-panel);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 0;
    padding: 12px 14px 0;
}

.rtc-agent__suggestion {
    background: var(--rtc-agent-cta);
    border: 1px solid var(--rtc-agent-cta);
    border-radius: 0;
    color: var(--rtc-chat-cta-text, #08080a);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 48px;
    padding: 12px 18px;
}

.rtc-agent__suggestion:hover {
    background: var(--rtc-agent-cta-hover);
    border-color: var(--rtc-agent-cta-hover);
}

.rtc-agent__inline-audit {
    background: var(--rtc-agent-panel);
    border-top: 1px solid var(--rtc-agent-border);
    padding: 16px 18px 4px;
}

.rtc-agent__inline-audit h3 {
    margin: 0 0 8px;
    color: var(--rtc-agent-ink);
    font-size: 18px;
    line-height: 1.2;
}

.rtc-agent__inline-audit p {
    margin: 0 0 12px;
    color: var(--rtc-agent-muted);
    font-size: 14px;
    line-height: 1.5;
}

.rtc-agent__inline-audit-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.rtc-agent__inline-audit-result {
    margin-top: 12px;
}

.rtc-agent__input {
    background: var(--rtc-agent-panel);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
}

.rtc-agent__input textarea {
    min-height: 82px;
    resize: vertical;
}

.rtc-agent__input button {
    align-self: end;
}

.rtc-agent__actions {
    background: var(--rtc-agent-panel);
    display: flex;
    justify-content: flex-end;
    padding: 0 14px 14px;
}

.rtc-agent__end {
    background: transparent !important;
    border: 1px solid var(--rtc-agent-ink) !important;
    color: var(--rtc-agent-ink) !important;
}

.rtc-agent__end:hover {
    background: var(--rtc-agent-cta) !important;
    border-color: var(--rtc-agent-cta) !important;
    color: var(--rtc-chat-cta-text, #08080a) !important;
}

.rtc-agent__chat .rtc-agent__lead {
    border-width: 1px 0 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.rtc-agent__side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rtc-agent__audit,
.rtc-agent__lead {
    padding: 18px;
}

.rtc-agent__audit h3,
.rtc-agent__lead h3 {
    margin: 0 0 8px;
    color: var(--rtc-agent-ink);
    font-size: 20px;
    line-height: 1.2;
}

.rtc-agent__audit p,
.rtc-agent__lead p {
    margin: 0 0 14px;
    color: var(--rtc-agent-muted);
    font-size: 14px;
    line-height: 1.5;
}

.rtc-agent label {
    display: block;
    margin: 12px 0 6px;
    color: var(--rtc-agent-ink);
    font-size: 13px;
    font-weight: 700;
}

.rtc-agent input,
.rtc-agent textarea {
    appearance: none;
    background: var(--rtc-chat-panel, #fff);
    width: 100%;
    border: 1px solid var(--rtc-agent-border);
    border-radius: 2px;
    color: var(--rtc-chat-text, var(--rtc-agent-ink));
    font: inherit;
    padding: 11px 12px;
}

.rtc-agent input::placeholder,
.rtc-agent textarea::placeholder {
    color: var(--rtc-agent-muted);
    opacity: 1;
}

.rtc-agent input:focus,
.rtc-agent textarea:focus {
    border-color: var(--rtc-agent-cta);
    box-shadow: 0 0 0 3px rgba(76, 53, 97, 0.14);
    outline: 0;
}

.rtc-agent button {
    appearance: none;
    background: var(--rtc-agent-cta);
    border: 1px solid var(--rtc-agent-cta);
    border-radius: 0;
    color: var(--rtc-chat-cta-text, var(--rtc-agent-ink));
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    min-height: 44px;
    padding: 10px 16px;
}

.rtc-agent button:hover {
    background: var(--rtc-agent-cta-hover);
    border-color: var(--rtc-agent-cta-hover);
    color: var(--rtc-chat-cta-text, #08080a);
}

.rtc-agent button:focus-visible {
    box-shadow: 0 0 0 3px rgba(8, 8, 10, 0.18);
    outline: 2px solid transparent;
}

.rtc-agent button:disabled {
    cursor: default;
    opacity: 0.6;
}

.rtc-agent__audit-result {
    margin-top: 14px;
}

.rtc-agent__audit-summary {
    background: var(--rtc-chat-user, #fffbe2);
    border-left: 4px solid var(--rtc-agent-cta);
    border-radius: 0;
    color: var(--rtc-chat-cta-text, #08080a) !important;
    padding: 12px;
}

.rtc-agent__audit-grid {
    display: grid;
    gap: 8px;
}

.rtc-agent__audit-item {
    align-items: center;
    border-bottom: 1px solid var(--rtc-agent-border);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
}

.rtc-agent__audit-item span {
    color: var(--rtc-agent-muted);
    font-size: 13px;
}

.rtc-agent__audit-item strong {
    color: var(--rtc-agent-ink);
    font-size: 13px;
    text-align: right;
}

.rtc-agent__privacy {
    align-items: flex-start;
    display: flex !important;
    gap: 10px;
    line-height: 1.4;
}

.rtc-agent__privacy input {
    flex: 0 0 18px;
    margin-top: 2px;
    width: 18px;
}

.rtc-agent__lead-status {
    color: var(--rtc-agent-ink);
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    min-height: 20px;
}

@media (max-width: 480px) {
    #rtc-fab {
        width: 64px;
        height: 64px;
        right: 12px;
        bottom: 12px;
    }

    .rtc-fab-mark {
        font-size: 30px;
    }

    .rtc_preview_bubble {
        right: 10px;
        bottom: 88px;
        width: min(340px, calc(100vw - 20px));
        padding: 12px 34px 12px 14px;
    }

    .rtc-preview-content {
        font-size: 14px;
    }

    #rtc-wrapper {
        width: 100% !important;
        height: 100dvh !important;
        bottom: 0 !important;
        right: 0 !important;
        top: 0 !important;
        border-radius: 0 !important;
    }

    .rtc-lang-buttons {
        display: none !important;
    }

    .rtc_lang_select {
        display: block !important;
        width: 100%;
        padding: 6px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-top: 4px;
    }

    .rtc_footer {
        padding-bottom: 54px;
    }
}

@media (max-width: 820px) {
    .rtc-agent__grid {
        grid-template-columns: 1fr;
    }

    .rtc-agent__chat {
        min-height: 520px;
    }

    .rtc-agent__input {
        grid-template-columns: 1fr;
    }

    .rtc-agent__inline-audit-row {
        grid-template-columns: 1fr;
    }

    .rtc-agent__message {
        max-width: 92%;
    }
}

:root {
    --rtc-brand: #4c3561;
    --rtc-brand-dark: #2f2340;
    --rtc-accent: #d63f5f;
    --rtc-soft: #f3f0f6;
}

#rtc-fab {
    background: var(--rtc-brand, #4c3561);
    overflow: visible;
    box-shadow: 0 18px 38px rgba(47, 35, 64, 0.28);
}

.rtc-fab-mark {
    font-size: 32px;
    letter-spacing: 0;
}

.rtc-fab-image {
    width: 72%;
    height: 72%;
    border-radius: 999px;
    object-fit: contain;
}

.rtc-fab-bubble {
    right: -3px;
    top: -3px;
    width: 26px;
    height: 26px;
    background: var(--rtc-accent, #d63f5f);
    font-size: 13px;
}

#rtc-wrapper {
    box-shadow: 0 22px 60px rgba(47, 35, 64, 0.24);
}

.rtc_header {
    background: var(--rtc-brand, #4c3561);
    min-height: 62px;
}

.rtc_header img {
    max-width: 148px;
    max-height: 36px;
    margin-right: 12px;
    object-fit: contain;
}

.rtc_clear {
    color: var(--rtc-brand, #4c3561);
}

.rtc_langbar,
.rtc_welcome {
    background: var(--rtc-soft, #f3f0f6);
}

.rtc_langbar button.active,
.rtc_input_area button,
.rtc-suggestion {
    background: var(--rtc-brand, #4c3561);
    border-color: var(--rtc-brand, #4c3561);
}

.rtc_messages {
    background: #f8f7fa;
}

.rtc_welcome,
.rtc-preview-content,
.rtc_header_title,
.rtc-agent__intro h2,
.rtc-agent__audit h3,
.rtc-agent__lead h3,
.rtc-agent label,
.rtc-agent__audit-item strong,
.rtc-agent__lead-status {
    color: var(--rtc-chat-text, var(--rtc-brand-dark, #2f2340));
}

.rtc_msg a,
.rtc-preview-close {
    color: var(--rtc-chat-text, var(--rtc-brand, #4c3561));
}

.rtc_user {
    background: #ebe4f2;
}

.rtc_preview_bubble {
    box-shadow: 0 18px 42px rgba(47, 35, 64, 0.18);
    padding: 16px 40px 16px 18px;
    border-color: rgba(76, 53, 97, 0.18);
}

.rtc-agent {
    --rtc-agent-brand: var(--rtc-brand, #4c3561);
    --rtc-agent-brand-dark: var(--rtc-chat-text, var(--rtc-brand-dark, #2f2340));
    --rtc-agent-accent: var(--rtc-accent, #d63f5f);
    --rtc-agent-soft: var(--rtc-soft, #f3f0f6);
    --rtc-agent-cta: var(--rtc-chat-cta, #fff15a);
    --rtc-agent-cta-hover: #f4df38;
    --rtc-agent-border: var(--rtc-chat-border, #ded8dc);
    --rtc-agent-ink: var(--rtc-chat-text, #08080a);
    --rtc-agent-muted: var(--rtc-chat-muted, #56515b);
    --rtc-agent-panel: var(--rtc-chat-panel, #fff);
}

#rtc-fab {
    background: var(--rtc-brand, #4c3561) !important;
    color: #fff !important;
    color-scheme: var(--rtc-color-scheme, light);
}

#rtc-fab .rtc-fab-mark,
#rtc-fab .rtc-fab-bubble {
    color: #fff !important;
}

#rtc-wrapper,
.rtc_preview_bubble {
    background: var(--rtc-chat-bg, #fff) !important;
    color: var(--rtc-chat-text, #21182c) !important;
    color-scheme: var(--rtc-color-scheme, light);
}

#rtc-wrapper *,
.rtc_preview_bubble * {
    box-sizing: border-box;
}

#rtc-ui {
    background: var(--rtc-chat-bg, #fff) !important;
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_header {
    background: var(--rtc-chat-bg, #fff) !important;
    border-bottom: 1px solid var(--rtc-chat-border, #ded8dc) !important;
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_header_title,
.rtc_close {
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_clear {
    background: var(--rtc-chat-cta, #fff15a) !important;
    border-color: var(--rtc-chat-cta, #fff15a) !important;
    color: var(--rtc-chat-cta-text, #08080a) !important;
}

.rtc_langbar,
.rtc_welcome {
    background: var(--rtc-chat-panel, #fff) !important;
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_langbar button {
    background: transparent !important;
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_langbar button.active {
    background: var(--rtc-chat-cta, #fff15a) !important;
    color: var(--rtc-chat-cta-text, #08080a) !important;
}

.rtc_messages {
    background: var(--rtc-chat-messages, #f8f7fa) !important;
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_msg {
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_msg a {
    color: var(--rtc-chat-text, #21182c) !important;
    text-decoration-color: var(--rtc-chat-cta, #fff15a) !important;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.rtc_bot {
    background: var(--rtc-chat-bot, #fff) !important;
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_user {
    background: var(--rtc-chat-user, #ebe4f2) !important;
    color: var(--rtc-chat-cta-text, #08080a) !important;
}

.rtc-suggestion {
    background: var(--rtc-chat-cta, #fff15a) !important;
    border-color: var(--rtc-chat-cta, #fff15a) !important;
    color: var(--rtc-chat-cta-text, #08080a) !important;
}

.rtc_input_area {
    background: var(--rtc-chat-bg, #fff) !important;
    border-top-color: var(--rtc-chat-border, #ded8dc) !important;
}

.rtc_input_area input {
    appearance: none;
    background: var(--rtc-chat-panel, #fff) !important;
    border-color: var(--rtc-chat-border, #ded8dc) !important;
    color: var(--rtc-chat-text, #21182c) !important;
    color-scheme: var(--rtc-color-scheme, light);
}

.rtc_input_area input::placeholder {
    color: #756d7f !important;
    opacity: 1;
}

.rtc_input_area button {
    background: var(--rtc-chat-cta, #fff15a) !important;
    color: var(--rtc-chat-cta-text, #08080a) !important;
}

.rtc-preview-content,
.rtc-preview-close {
    color: var(--rtc-chat-text, #21182c) !important;
}

.rtc_preview_bubble::after {
    background: var(--rtc-chat-bg, #fff) !important;
}

.rtc_footer {
    background: var(--rtc-chat-panel, #fff) !important;
    color: var(--rtc-chat-muted, #5e5967) !important;
}
