.splash-screen-chat-box-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    margin: 40px;
    box-shadow: var(--shadow-light);
}

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

.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.08;
    pointer-events: none;
    background: var(--base-light-color);
    filter: blur(11px);
}

.splash-screen-chat-box-panel-no-outline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    margin: 0 16px 16px 16px;
    box-shadow: var(--shadow-light);
}
.splash-screen-chat-box-panel .x-panel-body,
.splash-screen-chat-box-panel-no-outline .x-panel-body {
    border-radius: 12px;
    padding: 12px;
}

.splash-screen-chat-input {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.splash-screen-chat-input .x-form-field {
    border-bottom: none !important;
}

.splash-screen-chat-input.x-item-disabled {
    opacity: 0.5;
}

.splash-screen-chat-input.x-item-disabled .x-form-field {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.llm-chat-box-disabled {
    opacity: 0.55;
}

.llm-chat-box-disabled .x-form-field,
.llm-chat-box-disabled .splash-screen-chat-input {
    pointer-events: none;
    cursor: not-allowed;
}

/* Keep the stop button clickable even when the box is grayed out */
.llm-chat-box-disabled .conversation-stop-btn {
    pointer-events: auto;
    opacity: 1;
}

.splash-screen-send-btn {
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 5px;
    background: var(--base-color, #057186);
    border: 0px;
    width: 36px;
    height: 36px;
}

.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='24' height='30' viewBox='0 0 12 15' fill='none'><path d='M5.61682 1V15M10.7169 6.1084L5.62361 1.01506L0.530273 6.1084' stroke='%23FFF' stroke-width='1.5' stroke-miterlimit='10'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.splash-screen-send-btn.x-btn-over {
    background: var(--base-color, #057186) !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.4 !important;
    pointer-events: none !important;
    display: inline-block !important;
    background: var(--base-color, #057186) !important;
    border: 0 !important;
}

/* Stop button in conversation chat box */
.conversation-stop-btn {
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 5px;
    background: var(--base-color, #057186);
    border: 0px;
    width: 36px;
    height: 36px;
    color: #fff;
}

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

.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: anchored send button ── */
.llm-conversation-chat-box {
    position: relative;
}

.llm-chat-send-btn-anchored {
    position: absolute !important;
    top: 8px;
    right: 8px;
    z-index: 1;
}

/* Add right padding so textarea text doesn't flow under the button */
.llm-chat-input-with-btn .x-form-field {
    padding-right: 50px !important;
}
