.hyc-component-reasoner {
    max-width: 800px;
    margin: 20px 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hyc-component-reasoner__think {
    background: #f8f9fa;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.hyc-component-reasoner__text {
    padding: 20px;
    background: white;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.hyc-component-reasoner__think-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f0f4f8;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.hyc-component-reasoner__think-header-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-bottom: 16px;
}

.hyc-component-reasoner__think-header__content {
    font-size: 14px;
    color: #333;
}

.hyc-component-reasoner__think-header__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.hyc-component-reasoner__think-content {
    padding: 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.hyc-common-markdown-style p {
    margin-bottom: 10px;
}

/* 动态样式 */
.hyc-component-reasoner__think-content {
    display: none; /* 默认隐藏思考内容 */
}

.hyc-component-reasoner__think--expand .hyc-component-reasoner__think-content {
    display: block; /* 展开时显示 */
}

/* 聊天卡片样式 */
.chat-card {
    max-width: 800px;
    margin: 20px 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-bubble {
    background: white;
}

.bubble-content {
    padding: 0;
}

.thinking-card {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.think-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f0f4f8;
    cursor: pointer;
    user-select: none;
}

.think-header-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-bottom: 16px;
}

.think-title {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.think-title i {
    margin-right: 8px;
    color: #3498db;
}

.toggle-icon {
    transition: transform 0.3s ease;
    color: #a0a0c0;
}

.think-content {
    padding: 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px dashed #dde1f0;
}

.response-content {
    padding: 20px;
    background: white;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.message-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 20px;
    background-color: #f8f9ff;
    border-top: 1px solid #e1e5f0;
    gap: 15px;
}

.tool-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0f0;
    color: #7077a0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-item:hover {
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}