.splash-screen-chat-box-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--border-color-1, rgba(0, 0, 0, 0.08));
    background: var(--background-color, #fff);
    margin: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.splash-screen-chat-box-panel:focus-within {
    border-color: var(--base-color, #057186);
    box-shadow: 0 2px 12px rgba(5, 113, 134, 0.10);
}

.splash-screen-chat-box-panel-wrapper {
    position: relative;
    border-radius: 24px;
}

.splash-screen-chat-box-panel-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: 90%;
    border-radius: 50% / 40%;
    transform: translate(-50%, -44%);
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
    background: var(--base-light-color);
    filter: blur(14px);
}

.splash-screen-chat-box-panel-no-outline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--border-color-1, rgba(0, 0, 0, 0.08));
    background: var(--background-color, #fff);
    margin: 0 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.splash-screen-chat-box-panel-no-outline:focus-within {
    border-color: var(--base-color, #057186);
    box-shadow: 0 2px 12px rgba(5, 113, 134, 0.10);
}
.splash-screen-chat-box-panel .x-panel-body,
.splash-screen-chat-box-panel-no-outline .x-panel-body {
    border-radius: 24px;
    padding: 4px 8px 2px 12px;
}

.splash-screen-chat-input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.splash-screen-chat-input .x-form-field {
    border: none !important;
    border-bottom: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 6px 12px !important;
    color: var(--color, #1a1a1a);
}

.splash-screen-chat-input .x-form-field::placeholder {
    color: var(--light-color, #999);
    opacity: 0.7;
}

.splash-screen-send-btn {
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 2px;
    background: var(--base-color, #057186);
    border: 0px;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.splash-screen-send-btn:hover {
    transform: scale(1.05);
}

.splash-screen-send-btn .up-arrow-icon-svg {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none'><path d='M8 13V3M8 3L3.5 7.5M8 3L12.5 7.5' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
}

.splash-screen-send-btn.x-btn-over {
    background: var(--base-dark-color, #045a6b) !important;
    border: 0 !important;
}

.splash-screen-send-btn.x-btn.x-btn-disabled.x-btn-default-small,
.splash-screen-send-btn.x-btn.x-btn-disabled,
.splash-screen-send-btn.x-btn-disabled {
    opacity: 0.3 !important;
    pointer-events: none !important;
    display: flex !important;
    background: var(--base-color, #057186) !important;
    border: 0 !important;
    transform: none !important;
}

/* Stop button in conversation chat box */
.conversation-stop-btn {
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 2px;
    background: var(--base-color, #057186);
    border: 0px;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.conversation-stop-btn .fa-stop {
    color: #fff;
    font-size: 11px;
}

.conversation-stop-btn:hover {
    transform: scale(1.05);
}

.conversation-stop-btn.x-btn-over {
    background: var(--base-dark-color, #00383F) !important;
    border: 0 !important;
}

.splash-screen-welcome-text {
    color: var(--color);

    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.24px;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 82px;
    margin-right: 82px;
}


/* ── Conversation chat box ── */
.llm-conversation-chat-box {
    position: relative;
}
