:root {
    --whleabt-primary: #D97706;
    /* Vibrant Orange */
    --whleabt-secondary: #34302E;
    /* Dark Grey/Brown for User Bubble */
    --whleabt-bg-dark: #1C1917;
    /* rgb(28 25 23) as requested */
    --whleabt-text-light: #ffffff;
    --whleabt-text-muted: #6b7280;
    --whleabt-input-bg: #121212;
    --whleabt-border-dark: rgba(255, 255, 255, 0.05);
}

/* Force Material Symbols Font */
.whleabt-material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

#whleabt-chat-widget * {
    box-sizing: border-box;
}

#whleabt-chat-widget {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 575px;
    height: 490px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    background: #1c1c1c;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 9999999999;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border: 1px solid var(--whleabt-border-dark);
}

/* Responsive adjustments */
@media screen and (max-width: 620px) {
    #whleabt-chat-widget {
        width: calc(100vw - 20px) !important;
        height: min(600px, calc(100vh - 20px)) !important;
        bottom: 10px !important;
        right: 10px !important;
        border-radius: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    #whleabt-chat-widget {
        width: 100% !important;
        height: 100% !important;
        bottom: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

#whleabt-chat-widget.open {
    transform: translateY(0);
}

/* Header */
#whleabt-chat-header {
    background: #1C1917;
    /* Matches design color precisely */
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.whleabt-header-left {
    display: flex;
    align-items: center;
}

.whleabt-header-info h1 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
}

/* Hide header sub-elements as per design */
.whleabt-avatar-circle,
.whleabt-header-info p {
    display: none !important;
}

.whleabt-header-actions {
    display: flex;
    gap: 12px;
}

.whleabt-header-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding: 4px;
}

.whleabt-header-btn:hover {
    opacity: 1;
    background: transparent !important;
    box-shadow: none !important;
}

/* Chat Messages Area */
#whleabt-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgb(41 37 36 / 0.5);
}

#whleabt-chat-messages::-webkit-scrollbar {
    width: 4px;
}

#whleabt-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Message Structure */
#whleabt-chat-messages .whleabt-message {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 15px;
}

#whleabt-chat-messages .whleabt-message.whleabt-bot {
    align-self: flex-start;
}

#whleabt-chat-messages .whleabt-message.whleabt-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.whleabt-avatar-small {
    width: 36px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

#whleabt-chat-messages .message-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 95%;
}

.whleabt-bot-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--whleabt-text-muted);
    margin: 0;
}

.message.user .whleabt-bot-name {
    text-align: right;
}

.whleabt-message-bubble {
    padding: 14px 20px;
    font-size: 15px;
    line-height: 1.5;
}

.whleabt-bot-bubble {
    background: #ffffff;
    color: #1c1719;
    border-radius: 2px 20px 20px 20px;
}

.whleabt-user-bubble {
    background: var(--whleabt-secondary);
    color: #ffffff;
    border-radius: 20px 20px 2px 20px;
}

/* Bot bubble content structure */
.whleabt-bot-bubble p {
    margin: 0 0 8px 0;
}

.whleabt-bot-bubble p:last-child {
    margin-bottom: 0;
}

.bot-bubble ol.whleabt-list {
    margin: 8px 0 8px 0;
    padding-left: 22px;
    list-style-type: decimal;
    /* always show 1. 2. 3. */
}

.bot-bubble ol.whleabt-list li {
    margin-bottom: 12px;
    line-height: 1.55;
    display: list-item;
    /* preserve the ::marker (number) — never use flex here */
}

.bot-bubble ol.whleabt-list li:last-child {
    margin-bottom: 0;
}

/* Item title (bold part of numbered item) */
.whleabt-item-title {
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.4;
    display: block;
    /* stack title above description */
}

/* Description text below the title */
.whleabt-item-desc {
    font-size: 15px;
    color: #1c1719;
    line-height: 1.5;
    display: block;
}

/* Bullet list & Sub-lists */
.bot-bubble ul.whleabt-list,
.bot-bubble ul.whleabt-sub-list {
    padding-left: 20px;
    list-style-type: disc;
    margin: 8px 0;
}

.bot-bubble ul.whleabt-sub-list li {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-bubble ul.whleabt-list li {
    margin-bottom: 6px;
    line-height: 1.55;
}

/* Inline heading (### in AI markdown) */
.bot-bubble .whleabt-heading {
    font-size: 0.95em;
    font-weight: 700;
    margin: 10px 0 4px;
    color: #ffffff;
}

.bot-bubble a.whleabt-link {
    color: #56b8f5;
    text-decoration: none;
    word-break: break-all;
    font-size: 15px;
}

.bot-bubble a.whleabt-link:hover {
    text-decoration: underline;
}

/* Copy Response Button — dark circle, icon-only */
.whleabt-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(40, 40, 40, 0.85);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease, transform 0.15s ease;
    margin-top: 6px;
    flex-shrink: 0;
    padding: 0;
}

#whleabt-chat-messages .whleabt-message:hover .whleabt-copy-btn,
#whleabt-chat-messages .whleabt-copy-btn:focus {
    opacity: 1;
}

#whleabt-chat-messages .whleabt-copy-btn:hover {
    background: rgba(60, 60, 60, 0.95);
    transform: scale(1.08);
}

.whleabt-copy-btn:active {
    transform: scale(0.95);
}

.whleabt-copy-btn .whleabt-copy-icon {
    font-size: 15px;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* Copied state — keep visible, icon becomes a check */
.whleabt-copy-btn.whleabt-copied {
    background: rgba(40, 40, 40, 0.85);
    opacity: 1;
}

.whleabt-copy-btn.whleabt-copied .whleabt-copy-icon {
    color: #4ade80;
}

/* Blinking block cursor loader */
.whleabt-cursor-blink {
    width: 14px;
    height: 28px;
    background: #ffffff;
    border-radius: 3px;
    animation: whleabt-cursor-flash 1s step-start infinite;
    margin-top: 4px;
}

@keyframes whleabt-cursor-flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Inline typewriter cursor — trails text during reveal */
.whleabt-inline-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #ffffff;
    border-radius: 1px;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: whleabt-cursor-flash 0.65s step-start infinite;
}

/* Footer & Input */
#whleabt-chat-footer {
    background: rgb(41 37 36 / 0.5);
    background: #2f2f2f;
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    background: rgb(41 37 36 / 0.5);
}

.whleabt-input-pill-container {
    background: #222;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 31px;
    border-radius: 26px;
    border: 1px solid #4f4f4f32;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}

#whleabt-chat-input {
    flex: 1;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    padding: 12px 0;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

#whleabt-chat-input::placeholder {
    color: var(--whleabt-text-muted);
    font-weight: 600;
}

#whleabt-chat-send {
    background: rgb(217 119 6 / 1);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    flex-shrink: 0;
    padding: 0;
}

#whleabt-chat-send:hover:not(:disabled) {
    background: #f59e0b;
}

#whleabt-chat-send:disabled {
    background: rgb(217 119 6 / 0.5);
    cursor: not-allowed;
    transform: none;
}

#whleabt-chat-send .whleabt-material-symbols-outlined {
    font-size: 22px;
    color: #fff;
}

/* Timer shown in send button during response */
#whleabt-chat-send .whleabt-timer {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

#whleabt-chat-send.loading {
    cursor: not-allowed;
    opacity: 0.9;
}

/* Disabled input while waiting */
#whleabt-chat-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Toggle Button */
#whleabt-chat-toggle {
    position: fixed !important;
    bottom: 15px !important;
    right: 15px !important;
    width: 72px !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--whleabt-primary);
    color: white;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 99999999999 !important;
    border: 2px solid #fff !important;
    cursor: pointer !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#whleabt-chat-toggle:hover {
    transform: scale(1.1);
}

#whleabt-chat-toggle .whleabt-material-symbols-outlined {
    font-size: 32px;
    animation: whleabt-heartbeat 3s ease-in-out infinite;
}

/* Also apply heartbeat to custom image icons */
#whleabt-chat-toggle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: whleabt-heartbeat 1.6s infinite;
}

/* Pause heartbeat on hover so scale feels clean */
#whleabt-chat-toggle:hover .whleabt-material-symbols-outlined,
#whleabt-chat-toggle:hover img {
    animation-play-state: paused;
}

#whleabt-chat-label {
    position: fixed;
    bottom: 105px;
    right: 15px;
    background: #1C1917;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.01em;
    z-index: 9999999999;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    max-width: 200px;
    font-size: 13px;
    margin-bottom: 15px;
    padding: 10px 15px;
    line-height: 1.5;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

/* No caret arrow — clean pill style */
#whleabt-chat-label::after {
    display: none;
}

@keyframes whleabt-float {

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

    50% {
        transform: translateY(-5px);
    }
}

@keyframes whleabt-heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(0.98);
    }

    60% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

body.whleabt-open #whleabt-chat-toggle,
body.whleabt-open #whleabt-chat-label {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Full Width Support */
body.whleabt-full-width #whleabt-chat-widget {
    width: 100% !important;
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

#whleabt-chat-widget.maximized {
    width: 100% !important;
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* ── Chip Rows (Starters + Suggestions) ─────────────────────────── */
.whleabt-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 14px 16px;
    animation: whleabt-chips-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Starters sit flush after the welcome bubble */
.whleabt-chips-row.whleabt-starters {
    padding-top: 4px;
}

/* Suggestions sit flush after the last bot bubble */
.whleabt-chips-row.whleabt-suggestions {
    padding-top: 2px;
    padding-left: 68px;
    /* align under bot bubble (avatar width + gap) */
}

.whleabt-chip {
    background: transparent;
    border: 1.5px solid rgba(217, 119, 6, 0.6);
    color: rgba(217, 119, 6, 0.9);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease,
        border-color 0.2s ease, transform 0.15s ease,
        box-shadow 0.2s ease;
    text-align: left;
    line-height: 1.4;
    white-space: nowrap;
}

.whleabt-chip:hover {
    background: var(--whleabt-primary, #d97706);
    border-color: var(--whleabt-primary, #d97706);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.whleabt-chip:active {
    transform: translateY(0);
}

/* Starter chips: slightly smaller, more muted */
.whleabt-starter-chip {
    font-size: 12px;
    opacity: 0.85;
}

@keyframes whleabt-chips-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ── Clear / New Chat button (in header) ─────────────────────────── */
#whleabt-clear-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--whleabt-text-light, #fff);
    opacity: 0.45;
    transition: opacity 0.2s;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-family: inherit;
}

#whleabt-clear-btn:hover {
    opacity: 1;
    background: transparent !important;
    box-shadow: none !important;
}

#whleabt-clear-btn .whleabt-material-symbols-outlined {
    font-size: 18px;
}

@media(max-width: 767px) {
    #whleabt-chat-widget a.whleabt-link {
        line-break: anywhere;
    }
}

/* ── Lead Capture CTA & Form UI ─────────────────────────── */

/* CTA bubble — renders as a chip-style row flush under the bot bubble */
.whleabt-lead-cta {
    animation: whleabt-chips-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* The CTA button itself inherits .whleabt-chip styles;
   override only what differs for the CTA context */
.whleabt-start-lead-btn {
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ── Footer Form Overlay ── */
.whleabt-lead-footer-form {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 12px 12px 16px;
    animation: whleabt-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    background: transparent;
    border-radius: 0 0 24px 24px;
}

@keyframes whleabt-slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* ── Inner Card ── */
.whleabt-lead-form-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 16px;
    box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    color: #1c1719;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Close Button (circular) ── */
.whleabt-lead-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    padding: 12px;
}

.whleabt-lead-close-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ── Form Header (center aligned) ── */
.whleabt-lead-form-inner h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    padding-right: 36px;
    /* space for close button */
    padding-left: 36px;
    line-height: 1.3;
}

.whleabt-lead-form-content-wrapper {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 12px;
}

.whleabt-form-subtitle {
    margin: 0 0 16px 0 !important;
    font-size: 12.5px !important;
    color: #6b7280 !important;
    text-align: center;
    line-height: 1.4;
}

/* ── Next / Submit Button ── */
.whleabt-form-next-btn {
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--whleabt-primary, #d97706);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.whleabt-form-next-btn:hover:not(:disabled) {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.whleabt-form-next-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── Step Indicator ── */
.whleabt-step-indicator {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 18px;
    margin-top: 2px;
}

/* Wrapper for dot + label */
.whleabt-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.whleabt-step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.whleabt-step-dot.active {
    background: var(--whleabt-primary, #d97706);
    border-color: var(--whleabt-primary, #d97706);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
}

.whleabt-step-dot.completed {
    background: #dcfce7;
    border-color: #86efac;
    color: #16a34a;
}

.whleabt-step-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    max-width: 56px;
    transition: color 0.3s ease;
}

.whleabt-step-item:has(.whleabt-step-dot.active) .whleabt-step-label {
    color: var(--whleabt-primary, #d97706);
}

.whleabt-step-item:has(.whleabt-step-dot.completed) .whleabt-step-label {
    color: #16a34a;
}

/* Connector line between step items */
.whleabt-step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    max-width: 40px;
    min-width: 16px;
    margin-top: 18px;
    /* Vertically center the line with the dot centers */
    margin-bottom: auto;
    align-self: flex-start;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.whleabt-step-line.completed {
    background: #86efac;
}

/* ── Form Body ── */
.whleabt-form-question {
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
    line-height: 1.4;
}

.whleabt-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: inherit;
    margin-bottom: 6px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    background: #f9fafb;
    color: #111827;
    box-sizing: border-box;
}

.whleabt-form-input:focus {
    border-color: var(--whleabt-primary, #d97706);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
    background: #fff;
}

/* ── Trust Message ── */
.whleabt-trust-msg {
    font-size: 11px !important;
    color: #9ca3af !important;
    text-align: center;
    margin: 0 0 10px 0 !important;
    line-height: 1.4;
    display: block;
}

/* ── Success State ── */
.whleabt-lead-success {
    text-align: center;
    padding: 8px 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.whleabt-success-icon {
    font-size: 44px !important;
    color: #16a34a;
    margin-bottom: 6px;
    display: block;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.whleabt-lead-thank-you-content {
    width: 100%;
    text-align: left;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

.whleabt-lead-thank-you-content p {
    margin: 0 0 10px;
}

.whleabt-lead-thank-you-content p:last-child {
    margin-bottom: 0;
}

.whleabt-lead-thank-you-content ul,
.whleabt-lead-thank-you-content ol {
    margin: 0 0 10px 18px;
    padding: 0;
}

.whleabt-lead-thank-you-content a {
    color: var(--whleabt-primary, #e62d2d);
    text-decoration: underline;
}

.whleabt-lead-thank-you-content strong,
.whleabt-lead-thank-you-content b {
    font-weight: 700;
}

textarea.whleabt-form-input {
    max-height: 100px;
    overflow-y: auto;
}

.whleabt-form-fields-container {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 8px;
}

.whleabt-form-fields-container::-webkit-scrollbar {
    width: 4px;
}

.whleabt-form-fields-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

/* Custom Extracted CSS from template inline styles */
.whleabt-config-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, 0.95);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.whleabt-config-overlay .whleabt-material-symbols-outlined {
    font-size: 48px;
    color: #666;
    margin-bottom: 15px;
}

.whleabt-config-overlay p {
    color: #444;
    font-weight: 500;
    margin: 0;
}

.whleabt-config-overlay a {
    margin-top: 15px;
    color: #0583d8;
    text-decoration: none;
    font-size: 14px;
}

#whleabt-minimize-btn {
    display: none;
}