body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

#chat-box {
    width: 100%;
    height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border: none;
    padding-bottom: 20px;
}

#chat-content {
    flex-grow: 1;
    overflow-y: scroll;
    padding: 5px;
	height: 300px; /* 或者其他适当的高度 */
}
#intro-bar {
    background-color: #3fba98; /* 绿色填充 */
    display: flex;           /* 使用Flexbox进行布局 */
    align-items: center;     /* 垂直居中内容 */
    padding: 10px;           /* 添加内边距 */
	 overflow: hidden;
	height: 40px;
}

#logo {
    width: 117px;            /* 调整LOGO的大小 */
    margin-right: 20px;      /* 在LOGO和文本之间添加一些间距 */
}

#org-details h3 {
    margin: 0;               /* 移除标题的外边距 */
    font-size: 18px;         /* 调整标题的字体大小 */
    color:#fff;
}

#org-details p {
    margin: 4px 0;           /* 添加一些外边距 */
    font-size: 14px;         /* 调整段落的字体大小 */
	color:#fff;
	    white-space: nowrap;       /* 不换行 */
	  overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#chat-input-box {
    display: flex;
    margin-bottom: 16px;
}

#user-input {
    width: 80%;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin: 10px;
    font-size: 16px;
	height:40px;
}

button {
    width: 20%;
    padding: 10px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.message {
    display: ;
    align-items: flex-end; /* 新增对齐方式 */
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 5px;
}

.bot .avatar {
    background-image: url('chat.jpg');
    background-size: cover;
}

.text {
    background: #e6e6e6;
    padding: 5px;
    margin: 5px;
    flex-grow: 1;
    border-radius: 5px;
    font-size: 16px;
}

.user .text {
    background: #c1f0c1;
    text-align: right;
}
