#rag-chatbot-root {
    --rag-theme-color: #0073aa;
    --rag-panel-width: 320px;
    --rag-panel-height: 440px;
    position: fixed;
    bottom: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#rag-chatbot-root.rag-chatbot-position-bottom-right {
    right: 20px;
}

#rag-chatbot-root.rag-chatbot-position-bottom-left {
    left: 20px;
}

.rag-chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--rag-theme-color);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rag-chatbot-panel {
    display: none;
    width: var(--rag-panel-width);
    height: var(--rag-panel-height);
    min-width: 260px;
    min-height: 300px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 90px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 70px;
    right: 0;
    flex-direction: column;
    /* ユーザーがマウスで角をドラッグして幅・高さを変更できるようにする。
       resizeを機能させるにはoverflowをvisible以外にする必要がある。 */
    overflow: auto;
    resize: both;
}

#rag-chatbot-root.rag-chatbot-position-bottom-left .rag-chatbot-panel {
    right: auto;
    left: 0;
}

.rag-chatbot-panel.is-open {
    display: flex;
}

.rag-chatbot-header {
    background-color: var(--rag-theme-color);
    color: #fff;
    padding: 12px 16px;
    font-weight: bold;
}

.rag-chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
}

.rag-chatbot-message {
    margin-bottom: 10px;
    white-space: pre-wrap;
}

.rag-chatbot-message.user {
    text-align: right;
    color: #333;
}

.rag-chatbot-message.user span {
    display: inline-block;
    background-color: #e6f0fa;
    border-radius: 12px;
    padding: 6px 10px;
    text-align: left;
}

.rag-chatbot-message.bot {
    text-align: left;
    color: #111;
}

.rag-chatbot-message h1,
.rag-chatbot-message h2,
.rag-chatbot-message h3,
.rag-chatbot-message h4,
.rag-chatbot-message h5,
.rag-chatbot-message h6 {
    margin: 8px 0 4px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.rag-chatbot-input-area {
    display: flex;
    border-top: 1px solid #eee;
}

.rag-chatbot-input-area input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

.rag-chatbot-input-area button {
    background-color: var(--rag-theme-color);
    color: #fff;
    border: none;
    padding: 0 16px;
    cursor: pointer;
}
