#dp-lead-bot-root, #dp-lead-bot-inline {
    --dplb-bubble: #134E8E;
    --dplb-bubble-deep: #0F3D70;
    --dplb-accent: #FFB33F;
    --dplb-bg: #fff;
    --dplb-ink: #172536;
    --dplb-muted: #66758B;
    --dplb-line: #D9E2EE;
    --dplb-soft: #F5F8FC;
    --dplb-user-bg: #134E8E;
    --dplb-user-text: #fff;
    --dplb-bot-bg: #F5F8FC;
    --dplb-bot-text: #172536;
    font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--dplb-ink)
    }
#dp-lead-bot-root .dplb-launcher, #dp-lead-bot-inline .dplb-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2147483600;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse
    }
#dp-lead-bot-root .dplb-launcher-btn, #dp-lead-bot-inline .dplb-launcher-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dplb-bubble);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
    padding: 0
    }
#dp-lead-bot-root .dplb-launcher-btn:hover, #dp-lead-bot-inline .dplb-launcher-btn:hover {
    transform: translatey(-2px);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.22)
    }
#dp-lead-bot-root .dplb-launcher-btn svg, #dp-lead-bot-inline .dplb-launcher-btn svg {
    width: 26px;
    height: 26px;
    display: block
    }
#dp-lead-bot-root .dplb-launcher-greet, #dp-lead-bot-inline .dplb-launcher-greet {
    background: #fff;
    border: 1px solid var(--dplb-line);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--dplb-ink);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
    max-width: 220px;
    line-height: 1.4;
    cursor: pointer;
    animation: dplb-pop 0.4s ease
    }
@keyframes dplb-pop {
    from {
        opacity: 0;
        transform: translateY(6px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
#dp-lead-bot-root .dplb-panel, #dp-lead-bot-inline .dplb-panel {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 120px);
    background: var(--dplb-bg);
    border: 1px solid transparent;
    border-radius: 18px;
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.18);
    z-index: 2147483601;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: dplb-slide 0.25s ease
    }
#dp-lead-bot-root[data-dplb-border="yes"] .dplb-panel, #dp-lead-bot-inline[data-dplb-border="yes"] .dplb-panel {
    border-color: var(--dplb-line)
    }
#dp-lead-bot-root .dplb-panel--embedded, #dp-lead-bot-inline .dplb-panel--embedded {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    height: var(--dplb-inline-height, 560px);
    max-height: none;
    z-index: auto;
    animation: none;
    border-radius: 14px;
    border: none;
    box-shadow: none
    }
#dp-lead-bot-root[data-dplb-border="yes"] .dplb-panel--embedded, #dp-lead-bot-inline[data-dplb-border="yes"] .dplb-panel--embedded {
    border: 1px solid var(--dplb-line)
    }
#dp-lead-bot-root .dplb-chrome .dplb-panel--embedded, #dp-lead-bot-inline .dplb-chrome .dplb-panel--embedded, #dp-lead-bot-root[data-dplb-border="yes"] .dplb-chrome .dplb-panel--embedded, #dp-lead-bot-inline[data-dplb-border="yes"] .dplb-chrome .dplb-panel--embedded {
    border: none;
    border-radius: 0;
    box-shadow: none
    }
@keyframes dplb-slide {
    from {
        opacity: 0;
        transform: translateY(12px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
#dp-lead-bot-root .dplb-header, #dp-lead-bot-inline .dplb-header {
    background: linear-gradient(160deg, #0F1F35 0%, #134E8E 100%);
    padding: 16px 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0
    }
#dp-lead-bot-root .dplb-header::after, #dp-lead-bot-inline .dplb-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 179, 63, 0.22), transparent 60%);
    pointer-events: none
    }
#dp-lead-bot-root .dplb-avatar, #dp-lead-bot-inline .dplb-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
    }
#dp-lead-bot-root .dplb-avatar svg, #dp-lead-bot-inline .dplb-avatar svg {
    width: 20px;
    height: 20px
    }
#dp-lead-bot-root .dplb-header-text, #dp-lead-bot-inline .dplb-header-text {
    flex: 1;
    position: relative;
    z-index: 1
    }
#dp-lead-bot-root .dplb-header-name, #dp-lead-bot-inline .dplb-header-name {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.01em
    }
#dp-lead-bot-root .dplb-header-status, #dp-lead-bot-inline .dplb-header-status {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px
    }
#dp-lead-bot-root .dplb-dot, #dp-lead-bot-inline .dplb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80
    }
#dp-lead-bot-root .dplb-close, #dp-lead-bot-inline .dplb-close {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    position: relative;
    z-index: 1;
    padding: 0;
    transition: background 0.15s ease
    }
#dp-lead-bot-root .dplb-close:hover, #dp-lead-bot-inline .dplb-close:hover {
    background: rgba(255, 255, 255, 0.22)
    }
#dp-lead-bot-root .dplb-messages, #dp-lead-bot-inline .dplb-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--dplb-soft);
    justify-content: flex-end
    }
#dp-lead-bot-root .dplb-messages > *:first-child, #dp-lead-bot-inline .dplb-messages > *:first-child {
    margin-top: auto
    }
#dp-lead-bot-root .dplb-bubble, #dp-lead-bot-inline .dplb-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.5;
    animation: dplb-bubble-in 0.25s ease
    }
@keyframes dplb-bubble-in {
    from {
        opacity: 0;
        transform: translateY(4px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
#dp-lead-bot-root .dplb-bubble.bot, #dp-lead-bot-inline .dplb-bubble.bot {
    align-self: flex-start;
    background: var(--dplb-bot-bg);
    color: var(--dplb-bot-text);
    border: 1px solid var(--dplb-line);
    border-bottom-left-radius: 4px
    }
#dp-lead-bot-root .dplb-bubble.user, #dp-lead-bot-inline .dplb-bubble.user {
    align-self: flex-end;
    background: var(--dplb-user-bg);
    color: var(--dplb-user-text);
    border-bottom-right-radius: 4px
    }
#dp-lead-bot-root .dplb-typing, #dp-lead-bot-inline .dplb-typing {
    display: inline-flex;
    gap: 4px;
    padding: 6px 0
    }
#dp-lead-bot-root .dplb-typing span, #dp-lead-bot-inline .dplb-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dplb-muted);
    animation: dplb-typing 1.2s infinite ease-in-out
    }
#dp-lead-bot-root .dplb-typing span:nth-child(2), #dp-lead-bot-inline .dplb-typing span:nth-child(2) {
    animation-delay: 0.15s
    }
#dp-lead-bot-root .dplb-typing span:nth-child(3), #dp-lead-bot-inline .dplb-typing span:nth-child(3) {
    animation-delay: 0.3s
    }
@keyframes dplb-typing {
    0%, 60%, 100% {
        opacity: .3;
        transform: translateY(0);
        } 30% {
        opacity: 1;
        transform: translateY(-3px);
        }
    }
#dp-lead-bot-root .dplb-options, #dp-lead-bot-inline .dplb-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 18px 14px;
    background: var(--dplb-soft)
    }
#dp-lead-bot-root .dplb-chip, #dp-lead-bot-inline .dplb-chip {
    background: #fff;
    border: 1.5px solid var(--dplb-bubble);
    color: var(--dplb-bubble);
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease
    }
#dp-lead-bot-root .dplb-chip:hover, #dp-lead-bot-inline .dplb-chip:hover {
    background: var(--dplb-bubble);
    color: #fff
    }
#dp-lead-bot-root .dplb-inline-chips, #dp-lead-bot-inline .dplb-inline-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-self: flex-start;
    max-width: 95%;
    margin-top: 2px;
    animation: dplb-bubble-in 0.3s ease
    }
#dp-lead-bot-root .dplb-inline-chips .dplb-chip, #dp-lead-bot-inline .dplb-inline-chips .dplb-chip {
    padding: 6px 11px;
    font-size: 11.5px;
    border-width: 1px
    }
#dp-lead-bot-root .dplb-panel--conversational .dplb-messages, #dp-lead-bot-inline .dplb-panel--conversational .dplb-messages {
    padding: 20px 18px;
    gap: 12px
    }
#dp-lead-bot-root .dplb-panel--conversational .dplb-bubble.bot, #dp-lead-bot-inline .dplb-panel--conversational .dplb-bubble.bot {
    border-color: transparent;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04)
    }
#dp-lead-bot-root .dplb-panel--conversational .dplb-input-bar, #dp-lead-bot-inline .dplb-panel--conversational .dplb-input-bar {
    background: #fff
    }
#dp-lead-bot-root .dplb-form, #dp-lead-bot-inline .dplb-form {
    padding: 14px 18px 18px;
    background: var(--dplb-soft);
    display: flex;
    flex-direction: column;
    gap: 8px
    }
#dp-lead-bot-root .dplb-form input, #dp-lead-bot-inline .dplb-form input, #dp-lead-bot-root .dplb-form textarea, #dp-lead-bot-inline .dplb-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
    border: 1px solid var(--dplb-line);
    border-radius: 10px;
    background: #fff;
    color: var(--dplb-ink);
    resize: vertical
    }
#dp-lead-bot-root .dplb-form input:focus, #dp-lead-bot-inline .dplb-form input:focus, #dp-lead-bot-root .dplb-form textarea:focus, #dp-lead-bot-inline .dplb-form textarea:focus {
    outline: none;
    border-color: var(--dplb-bubble);
    box-shadow: 0 0 0 3px rgba(19, 78, 142, 0.12)
    }
#dp-lead-bot-root .dplb-form button, #dp-lead-bot-inline .dplb-form button {
    background: var(--dplb-bubble);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease
    }
#dp-lead-bot-root .dplb-form button:hover, #dp-lead-bot-inline .dplb-form button:hover {
    background: #0F3D70
    }
#dp-lead-bot-root .dplb-form button:disabled, #dp-lead-bot-inline .dplb-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed
    }
#dp-lead-bot-root .dplb-input-bar, #dp-lead-bot-inline .dplb-input-bar {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    background: #fff;
    border-top: 1px solid var(--dplb-line);
    flex-shrink: 0
    }
#dp-lead-bot-root .dplb-input-bar input, #dp-lead-bot-inline .dplb-input-bar input {
    flex: 1;
    padding: 9px 12px;
    font-family: inherit;
    font-size: 13px;
    border: 1px solid var(--dplb-line);
    border-radius: 999px;
    background: #fff;
    min-width: 0
    }
#dp-lead-bot-root .dplb-input-bar input:focus, #dp-lead-bot-inline .dplb-input-bar input:focus {
    outline: none;
    border-color: var(--dplb-bubble);
    box-shadow: 0 0 0 3px rgba(19, 78, 142, 0.12)
    }
#dp-lead-bot-root .dplb-input-bar button, #dp-lead-bot-inline .dplb-input-bar button {
    background: var(--dplb-bubble);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: background 0.15s ease
    }
#dp-lead-bot-root .dplb-input-bar button:hover, #dp-lead-bot-inline .dplb-input-bar button:hover {
    background: #0F3D70
    }
#dp-lead-bot-root .dplb-input-bar button svg, #dp-lead-bot-inline .dplb-input-bar button svg {
    width: 16px;
    height: 16px
    }
#dp-lead-bot-root .dplb-input-bar--disabled input, #dp-lead-bot-inline .dplb-input-bar--disabled input {
    background: var(--dplb-soft);
    color: var(--dplb-muted);
    cursor: not-allowed
    }
#dp-lead-bot-root .dplb-input-bar--disabled button, #dp-lead-bot-inline .dplb-input-bar--disabled button {
    background: var(--dplb-line);
    cursor: not-allowed
    }
#dp-lead-bot-root .dplb-input-bar--disabled button:hover, #dp-lead-bot-inline .dplb-input-bar--disabled button:hover {
    background: var(--dplb-line)
    }
#dp-lead-bot-root .dplb-branding, #dp-lead-bot-inline .dplb-branding {
    text-align: center;
    font-size: 10.5px;
    color: var(--dplb-muted);
    padding: 6px 0;
    background: #fff;
    border-top: 1px solid var(--dplb-line);
    flex-shrink: 0
    }
#dp-lead-bot-root .dplb-branding a, #dp-lead-bot-inline .dplb-branding a {
    color: var(--dplb-bubble);
    text-decoration: none;
    font-weight: 600
    }
@media (max-width: 480px) {
    #dp-lead-bot-root .dplb-panel:not(.dplb-panel--embedded), #dp-lead-bot-inline .dplb-panel:not(.dplb-panel--embedded) {
        bottom: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        height: calc(100vh - 90px)
        }
    #dp-lead-bot-root .dplb-panel--embedded, #dp-lead-bot-inline .dplb-panel--embedded {
        height: var(--dplb-inline-height-mobile, 460px)
        }
    #dp-lead-bot-root .dplb-launcher, #dp-lead-bot-inline .dplb-launcher {
        bottom: 16px;
        right: 16px
        }
    }
#dp-lead-bot-root .dplb-inline-wrap, #dp-lead-bot-inline .dplb-inline-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto
    }
#dp-lead-bot-root .dplb-inline-panel, #dp-lead-bot-inline .dplb-inline-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%
    }
#dp-lead-bot-root .dplb-chrome, #dp-lead-bot-inline .dplb-chrome {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden
    }
#dp-lead-bot-root .dplb-chrome-bar, #dp-lead-bot-inline .dplb-chrome-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    flex-shrink: 0
    }
#dp-lead-bot-root .dplb-chrome-dot, #dp-lead-bot-inline .dplb-chrome-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0
    }
#dp-lead-bot-root .dplb-chrome-dot:nth-child(1), #dp-lead-bot-inline .dplb-chrome-dot:nth-child(1) {
    background: #ff5f57
    }
#dp-lead-bot-root .dplb-chrome-dot:nth-child(2), #dp-lead-bot-inline .dplb-chrome-dot:nth-child(2) {
    background: #febc2e
    }
#dp-lead-bot-root .dplb-chrome-dot:nth-child(3), #dp-lead-bot-inline .dplb-chrome-dot:nth-child(3) {
    background: #28c840
    }
#dp-lead-bot-root .dplb-chrome-url, #dp-lead-bot-inline .dplb-chrome-url, #dp-lead-bot-root .dplb-chrome-title, #dp-lead-bot-inline .dplb-chrome-title {
    flex: 1;
    margin: 0 10px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-align: center;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
    }
#dp-lead-bot-root .dplb-chrome-body, #dp-lead-bot-inline .dplb-chrome-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0
    }
#dp-lead-bot-root .dplb-chrome-body .dplb-inline-panel, #dp-lead-bot-inline .dplb-chrome-body .dplb-inline-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0
    }
#dp-lead-bot-root .dplb-chrome-browser-light, #dp-lead-bot-inline .dplb-chrome-browser-light {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08)
    }
#dp-lead-bot-root .dplb-chrome-browser-light .dplb-chrome-bar, #dp-lead-bot-inline .dplb-chrome-browser-light .dplb-chrome-bar {
    background: #f5f6f8;
    border-bottom: 1px solid #e5e7eb
    }
#dp-lead-bot-root .dplb-chrome-browser-light .dplb-chrome-url, #dp-lead-bot-inline .dplb-chrome-browser-light .dplb-chrome-url {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #6b7280
    }
#dp-lead-bot-root .dplb-chrome-browser-dark, #dp-lead-bot-inline .dplb-chrome-browser-dark {
    background: #1e1e1e;
    border: 1px solid #2d2d2d;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4)
    }
#dp-lead-bot-root .dplb-chrome-browser-dark .dplb-chrome-bar, #dp-lead-bot-inline .dplb-chrome-browser-dark .dplb-chrome-bar {
    background: #2a2a2a;
    border-bottom: 1px solid #3a3a3a
    }
#dp-lead-bot-root .dplb-chrome-browser-dark .dplb-chrome-url, #dp-lead-bot-inline .dplb-chrome-browser-dark .dplb-chrome-url {
    background: #1e1e1e;
    border: 1px solid #3a3a3a;
    color: #a0a0a0
    }
#dp-lead-bot-root .dplb-chrome-browser-dark .dplb-chrome-body, #dp-lead-bot-inline .dplb-chrome-browser-dark .dplb-chrome-body {
    background: #1e1e1e
    }
#dp-lead-bot-root .dplb-chrome-terminal, #dp-lead-bot-inline .dplb-chrome-terminal {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3)
    }
#dp-lead-bot-root .dplb-chrome-terminal .dplb-chrome-bar, #dp-lead-bot-inline .dplb-chrome-terminal .dplb-chrome-bar {
    background: #161b22;
    border-bottom: 1px solid #30363d
    }
#dp-lead-bot-root .dplb-chrome-terminal .dplb-chrome-title, #dp-lead-bot-inline .dplb-chrome-terminal .dplb-chrome-title {
    background: transparent;
    border: none;
    color: #8b949e;
    font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 12px
    }
#dp-lead-bot-root .dplb-chrome-terminal .dplb-chrome-tilde, #dp-lead-bot-inline .dplb-chrome-terminal .dplb-chrome-tilde {
    color: #7ee787
    }
#dp-lead-bot-root .dplb-chrome-terminal .dplb-chrome-body, #dp-lead-bot-inline .dplb-chrome-terminal .dplb-chrome-body {
    background: #0d1117
    }
#dp-lead-bot-root .dplb-chrome-phone, #dp-lead-bot-inline .dplb-chrome-phone {
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
    background: #111;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 2px #2d2d2d;
    position: relative;
    aspect-ratio: 9/19
    }
#dp-lead-bot-root .dplb-chrome-phone .dplb-chrome-notch, #dp-lead-bot-inline .dplb-chrome-phone .dplb-chrome-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translatex(-50%);
    width: 100px;
    height: 24px;
    background: #111;
    border-radius: 0 0 16px 16px;
    z-index: 2
    }
#dp-lead-bot-root .dplb-chrome-phone .dplb-chrome-screen, #dp-lead-bot-inline .dplb-chrome-phone .dplb-chrome-screen {
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff
    }
#dp-lead-bot-root .dplb-chrome-phone .dplb-inline-panel, #dp-lead-bot-inline .dplb-chrome-phone .dplb-inline-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0
    }
@media (max-width: 420px) {
    #dp-lead-bot-root .dplb-chrome-phone, #dp-lead-bot-inline .dplb-chrome-phone {
        border-radius: 32px;
        padding: 8px
        }
    #dp-lead-bot-root .dplb-chrome-phone .dplb-chrome-screen, #dp-lead-bot-inline .dplb-chrome-phone .dplb-chrome-screen {
        border-radius: 24px
        }
    #dp-lead-bot-root .dplb-chrome-phone .dplb-chrome-notch, #dp-lead-bot-inline .dplb-chrome-phone .dplb-chrome-notch {
        width: 70px;
        height: 18px
        }
    }
#dp-lead-bot-root[data-dplb-theme="default"], #dp-lead-bot-inline[data-dplb-theme="default"] {
    --dplb-bubble: #134E8E;
    --dplb-bubble-deep: #0F3D70;
    --dplb-accent: #FFB33F;
    --dplb-bg: #fff;
    --dplb-ink: #172536;
    --dplb-muted: #66758B;
    --dplb-line: #D9E2EE;
    --dplb-soft: #F5F8FC;
    --dplb-user-bg: #134E8E;
    --dplb-user-text: #fff;
    --dplb-bot-bg: #F5F8FC;
    --dplb-bot-text: #172536
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"], #dp-lead-bot-inline[data-dplb-theme="dark-mode"] {
    --dplb-bubble: #60A5FA;
    --dplb-bubble-deep: #3B82F6;
    --dplb-accent: #60A5FA;
    --dplb-bg: #0F172A;
    --dplb-ink: #E2E8F0;
    --dplb-muted: #94A3B8;
    --dplb-line: #1E293B;
    --dplb-soft: #1E293B;
    --dplb-user-bg: #60A5FA;
    --dplb-user-text: #0F172A;
    --dplb-bot-bg: #1E293B;
    --dplb-bot-text: #E2E8F0
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-header, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-header {
    background: linear-gradient(160deg, #020617 0%, #0F172A 100%);
    border-bottom: 1px solid #1E293B
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-header::after, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-header::after {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-input-bar, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-input-bar {
    background: #0F172A;
    border-top-color: #1E293B
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-input-bar input {
    background: #1E293B;
    color: #E2E8F0;
    border-color: #334155
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-input-bar input::placeholder, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-input-bar input::placeholder {
    color: #64748B
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-branding, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-branding {
    background: #0F172A;
    color: #64748B;
    border-top-color: #1E293B
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-chip, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-chip {
    background: transparent;
    color: #60A5FA;
    border-color: #60A5FA
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-chip:hover, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-chip:hover {
    background: #60A5FA;
    color: #0F172A
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-form, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-form {
    background: #1E293B
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-form input, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-form input, #dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-form textarea, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-form textarea {
    background: #0F172A;
    color: #E2E8F0;
    border-color: #334155
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"], #dp-lead-bot-inline[data-dplb-theme="browser-light"] {
    --dplb-bubble: #2563EB;
    --dplb-bubble-deep: #1D4ED8;
    --dplb-accent: #2563EB;
    --dplb-bg: #fff;
    --dplb-ink: #1a1a1a;
    --dplb-muted: #6b7280;
    --dplb-line: #e5e7eb;
    --dplb-soft: #f9fafb;
    --dplb-user-bg: #2563EB;
    --dplb-user-text: #fff;
    --dplb-bot-bg: #f3f4f6;
    --dplb-bot-text: #1a1a1a
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-header, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-header::after, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-header::after {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-header-name, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-header-name {
    color: #1a1a1a
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-header-status, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-header-status {
    color: #6b7280
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-avatar, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-avatar {
    background: #f3f4f6;
    color: #2563EB;
    border: 1px solid #e5e7eb
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"], #dp-lead-bot-inline[data-dplb-theme="browser-dark"] {
    --dplb-bubble: #60A5FA;
    --dplb-bubble-deep: #3B82F6;
    --dplb-accent: #60A5FA;
    --dplb-bg: #1e1e1e;
    --dplb-ink: #e5e7eb;
    --dplb-muted: #a0a0a0;
    --dplb-line: #3a3a3a;
    --dplb-soft: #2a2a2a;
    --dplb-user-bg: #60A5FA;
    --dplb-user-text: #1e1e1e;
    --dplb-bot-bg: #2a2a2a;
    --dplb-bot-text: #e5e7eb
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-panel, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-panel {
    background: #1e1e1e
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-header, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-header {
    background: #2a2a2a;
    border-bottom: 1px solid #3a3a3a;
    color: #e5e7eb
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-header::after, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-header::after {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-avatar, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-avatar {
    background: rgba(96, 165, 250, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(96, 165, 250, 0.25)
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-header-status, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-header-status {
    color: #a0a0a0
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-messages, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-messages {
    background: #1e1e1e
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-input-bar, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-input-bar {
    background: #1e1e1e;
    border-top-color: #3a3a3a
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-input-bar input {
    background: #2a2a2a;
    color: #e5e7eb;
    border-color: #3a3a3a
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-input-bar input::placeholder, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-input-bar input::placeholder {
    color: #6b7280
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-branding, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-branding {
    background: #1e1e1e;
    color: #6b7280;
    border-top-color: #3a3a3a
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-chip, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-chip {
    background: transparent;
    color: #60A5FA;
    border-color: #60A5FA
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-chip:hover, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-chip:hover {
    background: #60A5FA;
    color: #1e1e1e
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-form, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-form {
    background: #2a2a2a
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-form input, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-form input, #dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-form textarea, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-form textarea {
    background: #1e1e1e;
    color: #e5e7eb;
    border-color: #3a3a3a
    }
#dp-lead-bot-root[data-dplb-theme="terminal"], #dp-lead-bot-inline[data-dplb-theme="terminal"] {
    --dplb-bubble: #7ee787;
    --dplb-bubble-deep: #56d364;
    --dplb-accent: #7ee787;
    --dplb-bg: #0d1117;
    --dplb-ink: #c9d1d9;
    --dplb-muted: #8b949e;
    --dplb-line: #30363d;
    --dplb-soft: #161b22;
    --dplb-user-bg: transparent;
    --dplb-user-text: #79c0ff;
    --dplb-bot-bg: transparent;
    --dplb-bot-text: #c9d1d9;
    font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-panel, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-panel {
    font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
    background: #0d1117
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-header, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-header {
    background: #161b22;
    border-bottom: 1px solid #30363d;
    color: #c9d1d9
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-header::after, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-header::after {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-avatar, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-avatar {
    background: transparent;
    border: 1px solid #30363d;
    color: #7ee787
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-header-name, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-header-name {
    color: #c9d1d9;
    font-family: inherit;
    font-weight: 600
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-header-status, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-header-status {
    color: #7ee787;
    font-family: inherit
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-dot, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-dot {
    background: #7ee787
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-messages, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-messages {
    background: #0d1117;
    padding: 16px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-bubble {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2px 0 2px 20px;
    max-width: 100%;
    position: relative
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-bubble.bot::before, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-bubble.bot::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 2px;
    color: #7ee787;
    font-weight: 700
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-bubble.user::before, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-bubble.user::before {
    content: "$";
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff7b72;
    font-weight: 700
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-bubble.user, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-bubble.user {
    text-align: left;
    align-self: flex-start
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-row, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-row {
    justify-content: flex-start
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-meta, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-meta {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar {
    background: #0d1117;
    border-top: 1px solid #30363d;
    padding: 10px 14px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar::before, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar::before {
    content: "$";
    color: #ff7b72;
    font-family: inherit;
    font-weight: 700;
    margin-right: 8px;
    align-self: center
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar input {
    background: transparent;
    color: #c9d1d9;
    border: none;
    font-family: inherit;
    padding-left: 0;
    caret-color: #7ee787
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar input:focus, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar input:focus {
    box-shadow: none
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar input::placeholder, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar input::placeholder {
    color: #484f58
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar button, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar button {
    background: transparent;
    color: #7ee787;
    border: 1px solid #30363d;
    border-radius: 4px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-input-bar button:hover, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-input-bar button:hover {
    background: #21262d
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-chip, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-chip {
    background: transparent;
    color: #7ee787;
    border: 1px solid #7ee787;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-chip:hover, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-chip:hover {
    background: #7ee787;
    color: #0d1117
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-branding, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-branding {
    background: #0d1117;
    color: #484f58;
    border-top: 1px solid #30363d;
    font-family: inherit;
    font-size: 10px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-form, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-form {
    background: #0d1117;
    padding: 14px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-form label, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-form label {
    color: #7ee787;
    font-family: inherit
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-form input, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-form input, #dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-form textarea, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-form textarea {
    background: #0d1117;
    color: #c9d1d9;
    border: 1px solid #30363d;
    border-radius: 4px;
    font-family: inherit
    }
#dp-lead-bot-root[data-dplb-theme="phone"], #dp-lead-bot-inline[data-dplb-theme="phone"] {
    --dplb-bubble: #2563EB;
    --dplb-bubble-deep: #1D4ED8;
    --dplb-accent: #2563EB;
    --dplb-bg: #fff;
    --dplb-ink: #1a1a1a;
    --dplb-muted: #6b7280;
    --dplb-line: #e5e7eb;
    --dplb-soft: #f9fafb;
    --dplb-user-bg: #2563EB;
    --dplb-user-text: #fff;
    --dplb-bot-bg: #f3f4f6;
    --dplb-bot-text: #1a1a1a
    }
#dp-lead-bot-root[data-dplb-theme="phone"] .dplb-header::after, #dp-lead-bot-inline[data-dplb-theme="phone"] .dplb-header::after {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"], #dp-lead-bot-inline[data-dplb-theme="minimal-light"] {
    --dplb-bubble: #111827;
    --dplb-bubble-deep: #111827;
    --dplb-accent: #111827;
    --dplb-bg: transparent;
    --dplb-ink: #111827;
    --dplb-muted: #6b7280;
    --dplb-line: #e5e7eb;
    --dplb-soft: transparent;
    --dplb-user-bg: transparent;
    --dplb-user-text: #111827;
    --dplb-bot-bg: transparent;
    --dplb-bot-text: #4b5563
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"], #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] {
    --dplb-bubble: #f3f4f6;
    --dplb-bubble-deep: #f3f4f6;
    --dplb-accent: #f3f4f6;
    --dplb-bg: transparent;
    --dplb-ink: #f3f4f6;
    --dplb-muted: #9ca3af;
    --dplb-line: #374151;
    --dplb-soft: transparent;
    --dplb-user-bg: transparent;
    --dplb-user-text: #f3f4f6;
    --dplb-bot-bg: transparent;
    --dplb-bot-text: #d1d5db
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-panel, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-panel, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-panel, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-panel {
    background: transparent;
    box-shadow: none;
    border: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-header, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-header, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-header, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-header, #dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-header-minimal, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-header-minimal, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-header-minimal, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-header-minimal {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-messages, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-messages, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-messages, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-messages {
    background: transparent;
    padding: 20px 0;
    gap: 16px;
    justify-content: flex-end
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-row, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-row, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-row, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-row {
    align-items: flex-start
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-bubble, #dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-bubble.bot, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-bubble.bot, #dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-bubble.user, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-bubble.user, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-bubble, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-bubble.bot, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-bubble.bot, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-bubble.user, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-bubble.user {
    background: transparent;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
    font-weight: 400;
    line-height: 1.5
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-bubble.bot, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-bubble.bot {
    color: #4b5563
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-bubble.user, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-bubble.user {
    color: #111827;
    font-weight: 600;
    margin-left: 40px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-bubble.bot, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-bubble.bot {
    color: #d1d5db
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-bubble.user, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-bubble.user {
    color: #f3f4f6;
    font-weight: 600;
    margin-left: 40px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-meta, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-meta, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-meta, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-meta {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar {
    background: transparent;
    border: none;
    border-top: none;
    padding: 8px 0 10px;
    position: relative;
    gap: 8px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar::after, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #111827;
    opacity: 0.2
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar::after, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #f3f4f6;
    opacity: 0.25
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar input {
    background: transparent;
    color: #111827;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 8px 0;
    caret-color: #111827
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar input {
    background: transparent;
    color: #f3f4f6;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 8px 0;
    caret-color: #f3f4f6
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar input:focus, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar input:focus, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar input:focus, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar input:focus {
    box-shadow: none;
    border: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar input::placeholder, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar input::placeholder {
    color: #9ca3af
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar input::placeholder, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar input::placeholder {
    color: #6b7280
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar button, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar button {
    background: transparent;
    color: #111827;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 8px;
    opacity: 0.6;
    transition: opacity 0.15s ease, transform 0.15s ease;
    box-shadow: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar button, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar button {
    background: transparent;
    color: #f3f4f6;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 8px;
    opacity: 0.6;
    transition: opacity 0.15s ease, transform 0.15s ease;
    box-shadow: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar button:hover, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar button:hover, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar button:hover, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar button:hover {
    background: transparent;
    opacity: 1;
    transform: translatex(3px)
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-input-bar button svg, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-input-bar button svg, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-input-bar button svg, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-input-bar button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-chip, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-chip {
    background: transparent;
    border: 1px solid #111827;
    color: #111827;
    border-radius: 999px;
    opacity: 0.75;
    padding: 8px 16px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-chip, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-chip {
    background: transparent;
    border: 1px solid #f3f4f6;
    color: #f3f4f6;
    border-radius: 999px;
    opacity: 0.75;
    padding: 8px 16px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-chip:hover, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-chip:hover {
    background: #111827;
    color: #fff;
    opacity: 1
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-chip:hover, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-chip:hover {
    background: #f3f4f6;
    color: #0b0f19;
    opacity: 1
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-form, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-form, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-form, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-form {
    background: transparent;
    padding: 0 0 16px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-form label, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-form label {
    color: #6b7280
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-form label, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-form label {
    color: #9ca3af
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-form input, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-form input, #dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-form textarea, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-form textarea {
    background: transparent;
    color: #111827;
    border: none;
    border-bottom: 1px solid rgba(17, 24, 39, 0.2);
    border-radius: 0;
    padding: 10px 0
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-form input, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-form input, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-form textarea, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-form textarea {
    background: transparent;
    color: #f3f4f6;
    border: none;
    border-bottom: 1px solid rgba(243, 244, 246, 0.25);
    border-radius: 0;
    padding: 10px 0
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-submit, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-submit {
    background: #111827;
    color: #fff;
    border-radius: 2px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-submit, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-submit {
    background: #f3f4f6;
    color: #0b0f19;
    border-radius: 2px
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-branding, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-branding, #dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-branding, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-branding {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"][data-dplb-placement="bubble"] .dplb-panel:not(.dplb-panel--embedded), #dp-lead-bot-inline[data-dplb-theme="minimal-light"][data-dplb-placement="bubble"] .dplb-panel:not(.dplb-panel--embedded) {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(16, 24, 40, 0.18)
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"][data-dplb-placement="bubble"] .dplb-panel:not(.dplb-panel--embedded), #dp-lead-bot-inline[data-dplb-theme="minimal-dark"][data-dplb-placement="bubble"] .dplb-panel:not(.dplb-panel--embedded) {
    background: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-launcher-btn {
    background: #0d1117;
    color: #7ee787;
    border: 1px solid #30363d;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-launcher-btn::before, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-launcher-btn::before {
    content: ">";
    font-size: 20px;
    font-weight: 700;
    color: #7ee787
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-launcher-btn svg, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-launcher-btn svg {
    display: none
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-launcher--open .dplb-launcher-btn::before, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-launcher--open .dplb-launcher-btn::before {
    content: "×";
    font-size: 24px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-launcher-greet, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-launcher-greet {
    background: #161b22;
    color: #c9d1d9;
    border: 1px solid #30363d;
    font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 12px
    }
#dp-lead-bot-root[data-dplb-theme="terminal"] .dplb-launcher-greet::before, #dp-lead-bot-inline[data-dplb-theme="terminal"] .dplb-launcher-greet::before {
    content: "> ";
    color: #7ee787;
    font-weight: 700
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-launcher-btn {
    background: #fff;
    color: #2563EB;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.15)
    }
#dp-lead-bot-root[data-dplb-theme="browser-light"] .dplb-launcher-greet, #dp-lead-bot-inline[data-dplb-theme="browser-light"] .dplb-launcher-greet {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e5e7eb
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-launcher-btn {
    background: #1e1e1e;
    color: #60A5FA;
    border: 1px solid #3a3a3a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4)
    }
#dp-lead-bot-root[data-dplb-theme="browser-dark"] .dplb-launcher-greet, #dp-lead-bot-inline[data-dplb-theme="browser-dark"] .dplb-launcher-greet {
    background: #1e1e1e;
    color: #e5e7eb;
    border: 1px solid #3a3a3a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3)
    }
#dp-lead-bot-root[data-dplb-theme="phone"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="phone"] .dplb-launcher-btn {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3)
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-launcher-btn {
    background: #1E293B;
    color: #60A5FA;
    border: 1px solid #334155;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4)
    }
#dp-lead-bot-root[data-dplb-theme="dark-mode"] .dplb-launcher-greet, #dp-lead-bot-inline[data-dplb-theme="dark-mode"] .dplb-launcher-greet {
    background: #1E293B;
    color: #E2E8F0;
    border: 1px solid #334155;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3)
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-launcher-btn {
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12)
    }
#dp-lead-bot-root[data-dplb-theme="minimal-light"] .dplb-launcher-greet, #dp-lead-bot-inline[data-dplb-theme="minimal-light"] .dplb-launcher-greet {
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-launcher-btn, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-launcher-btn {
    background: #0b0f19;
    color: #f3f4f6;
    border: 1px solid #374151;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4)
    }
#dp-lead-bot-root[data-dplb-theme="minimal-dark"] .dplb-launcher-greet, #dp-lead-bot-inline[data-dplb-theme="minimal-dark"] .dplb-launcher-greet {
    background: #0b0f19;
    color: #f3f4f6;
    border: 1px solid #374151
    }
#dp-lead-bot-root[data-dplb-header="no"] .dplb-header, #dp-lead-bot-inline[data-dplb-header="no"] .dplb-header {
    display: none
    }
#dp-lead-bot-root[data-dplb-header="no"] .dplb-header-minimal, #dp-lead-bot-inline[data-dplb-header="no"] .dplb-header-minimal {
    display: flex;
    justify-content: flex-end;
    padding: 10px 14px 0;
    background: transparent
    }
#dp-lead-bot-root[data-dplb-placement="inline"] .dplb-header, #dp-lead-bot-inline[data-dplb-placement="inline"] .dplb-header, #dp-lead-bot-root[data-dplb-placement="inline"] .dplb-header-minimal, #dp-lead-bot-inline[data-dplb-placement="inline"] .dplb-header-minimal {
    display: none
    }
#dp-lead-bot-root[data-dplb-size="small"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="small"] .dplb-bubble {
    font-size: 13px
    }
#dp-lead-bot-root[data-dplb-size="small"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-size="small"] .dplb-input-bar input {
    font-size: 13px
    }
#dp-lead-bot-root[data-dplb-size="small"] .dplb-chip, #dp-lead-bot-inline[data-dplb-size="small"] .dplb-chip {
    font-size: 12px
    }
#dp-lead-bot-root[data-dplb-size="medium"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="medium"] .dplb-bubble {
    font-size: 14.5px
    }
#dp-lead-bot-root[data-dplb-size="medium"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-size="medium"] .dplb-input-bar input {
    font-size: 14.5px
    }
#dp-lead-bot-root[data-dplb-size="medium"] .dplb-chip, #dp-lead-bot-inline[data-dplb-size="medium"] .dplb-chip {
    font-size: 13px
    }
#dp-lead-bot-root[data-dplb-size="large"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="large"] .dplb-bubble {
    font-size: 17px;
    line-height: 1.5;
    padding: 12px 16px
    }
#dp-lead-bot-root[data-dplb-size="large"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-size="large"] .dplb-input-bar input {
    font-size: 17px;
    padding: 11px 14px
    }
#dp-lead-bot-root[data-dplb-size="large"] .dplb-chip, #dp-lead-bot-inline[data-dplb-size="large"] .dplb-chip {
    font-size: 15px;
    padding: 9px 16px
    }
#dp-lead-bot-root[data-dplb-size="large"] .dplb-messages, #dp-lead-bot-inline[data-dplb-size="large"] .dplb-messages {
    gap: 12px;
    padding: 20px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-bubble {
    font-size: 22px;
    line-height: 1.4;
    padding: 14px 18px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-input-bar input {
    font-size: 22px;
    padding: 12px 16px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-input-bar, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-input-bar {
    padding: 16px;
    gap: 10px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-input-bar button, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-input-bar button {
    width: 44px;
    height: 44px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-input-bar button svg, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-input-bar button svg {
    width: 20px;
    height: 20px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-chip, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-chip {
    font-size: 16px;
    padding: 12px 22px
    }
#dp-lead-bot-root[data-dplb-size="xl"] .dplb-messages, #dp-lead-bot-inline[data-dplb-size="xl"] .dplb-messages {
    gap: 18px;
    padding: 22px
    }
#dp-lead-bot-root[data-dplb-size="large"][data-dplb-theme="minimal-light"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="large"][data-dplb-theme="minimal-light"] .dplb-bubble, #dp-lead-bot-root[data-dplb-size="large"][data-dplb-theme="minimal-dark"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="large"][data-dplb-theme="minimal-dark"] .dplb-bubble {
    font-size: 20px;
    padding: 0
    }
#dp-lead-bot-root[data-dplb-size="xl"][data-dplb-theme="minimal-light"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="xl"][data-dplb-theme="minimal-light"] .dplb-bubble, #dp-lead-bot-root[data-dplb-size="xl"][data-dplb-theme="minimal-dark"] .dplb-bubble, #dp-lead-bot-inline[data-dplb-size="xl"][data-dplb-theme="minimal-dark"] .dplb-bubble {
    font-size: 26px;
    padding: 0;
    line-height: 1.35
    }
#dp-lead-bot-root[data-dplb-size="xl"][data-dplb-theme="minimal-light"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-size="xl"][data-dplb-theme="minimal-light"] .dplb-input-bar input, #dp-lead-bot-root[data-dplb-size="xl"][data-dplb-theme="minimal-dark"] .dplb-input-bar input, #dp-lead-bot-inline[data-dplb-size="xl"][data-dplb-theme="minimal-dark"] .dplb-input-bar input {
    font-size: 24px
    }
#dp-lead-bot-root .dplb-admin-notice, #dp-lead-bot-inline .dplb-admin-notice {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: #FFF7E6;
    border: 1px solid #FFD580;
    border-radius: 12px;
    color: #8B5A00;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.5
    }