.ybs_html_qa_container {
    margin: 0 auto;  
    background-color: transparent;
    padding: 10px;
    border-radius: 4px; 
    z-index: 10000 !important;
}

.ybs_html_qa_logoimage{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: move;
    z-index: 10001 !important;
}

.container-expanded {
    max-width: 500px !important;
    background-color:#fafafb;
}

.prompt-area {
    margin-bottom: 20px;
}  
  
.prompt-label {
    display: block;
    margin-bottom: 5px;
}  
  
.prompt-input {
    width: 100%;
    height: 100px;
    padding: 0px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: none;
    overflow: auto;
}  
  
.execute-button {
    display: block;
    width: 100%;
    padding: 10px 0px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}  
  
.execute-button:hover {
    background-color: #0056b3;
}
  
.answer-area {
    background-color: #f9f9f9;
    padding: 0px;
    border-radius: 4px;
}
  
.answer-input {
    width: 100%;
    padding: 0px;
    font-size: 16px;
    border: none;
    border: 1px solid #ccc;
    resize: none;
}

.prompt-row {  
    display: flex;  
    align-items: center;  
    justify-content: space-between;  
    margin-bottom: 6px;
}

.ybs_html_qa_tip {  
    position: absolute;  
    right: calc(100% + 5px);
    top: 50%;  
    transform: translateY(-50%);
    background-color: rgba(0, 117, 255, 1);
    color: #fff;  
    padding: 4px 8px;  
    border-radius: 4px;  
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}  
.ybs_html_qa_tip::after {  
    content: "";  
    position: absolute;  
    top: 50%;  
    left: 100%;
    margin-top: -5px;
    border-width: 5px;  
    border-style: solid;  
    border-color: transparent transparent transparent rgba(0, 117, 255, 1);
}
  
.ybs_html_qa_tip.visible {  
    opacity: 1;
}

.usage-instruction {  
    font-size: 10px;  
    color: #666;  
    margin-top: 10px; /* 根据需要调整与文本框之间的距离 */  
}

