/* 定制页面相关样式 */

/* 侧边栏样式 */
.sidebar {
    width: 250px;
    background-color: #8e3e1f;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #7a331a;
    transition: width 0.3s;
}

.sidebar-header {
    padding: 15px;
    border-bottom: 1px solid #7a331a;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 返回按钮 */
.back-btn {
    background-color: #f7eed9;
    color: #8e3e1f;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.2s;
    font-size: 14px;
}

.back-btn:hover {
    background-color: #e7d7c6;
}

.back-btn.full-width {
    width: 100%;
}

/* 主内容区域 */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    background-color: #f9f5ea;
    background-image: linear-gradient(to bottom, #f9f5ea, #f5ecd8);
}

/* 头部样式 */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.header h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #8e3e1f;
    font-family: 'SimSun', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 定制容器 */
.customize-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(142, 62, 31, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e7d7c6;
    padding: 20px;
}

/* 步骤容器 */
.step-container {
    display: none;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(142, 62, 31, 0.1);
    overflow: hidden;
    border: 1px solid #e7d7c6;
    transition: all 0.3s ease;
}

.step-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    background-color: #8e3e1f;
    color: white;
    padding: 12px 15px;
}

.step-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.step-content {
    padding: 15px;
    background-color: #fffdf7;
}

/* 表单元素 */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #8e3e1f;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* 标签选择器 */
.tags-container {
    margin-bottom: 20px;
}

.tags-title {
    margin-bottom: 10px;
    color: #8e3e1f;
    font-weight: bold;
}

.tags-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    padding: 8px 15px;
    background-color: #f7eed9;
    border: 1px solid #e7d7c6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.tag:hover {
    background-color: #e7d7c6;
}

.tag.selected {
    background-color: #8e3e1f;
    color: white;
    border-color: #70301a;
}

.tags-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 40px;
    padding: 10px;
    border: 1px dashed #ddd;
    border-radius: 5px;
}

.selected-tag {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #8e3e1f;
    color: white;
    border-radius: 15px;
    font-size: 0.9rem;
}

.selected-tag .remove-tag {
    margin-left: 5px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* 模块选择 */
.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.module-item {
    border: 1px solid #e7d7c6;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    transition: all 0.2s;
}

.module-item:hover {
    box-shadow: 0 2px 8px rgba(142, 62, 31, 0.15);
}

.module-checkbox {
    margin-right: 8px;
}

.module-item label {
    font-weight: bold;
    color: #8e3e1f;
}

.module-description {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* 个性设置 */
.personality-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.personality-group {
    margin-bottom: 15px;
}

.personality-group label {
    display: block;
    margin-bottom: 10px;
    color: #8e3e1f;
    font-weight: bold;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-container span {
    width: 60px;
    text-align: center;
}

.slider-container input[type="range"] {
    flex: 1;
    margin: 0 10px;
}

.radio-options {
    display: flex;
    gap: 15px;
}

.radio-group {
    display: flex;
    align-items: center;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
}

/* 操作按钮 */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.primary-btn, .secondary-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.2s;
}

.primary-btn {
    background-color: #8e3e1f;
    color: white;
}

.primary-btn:hover {
    background-color: #70301a;
}

.secondary-btn {
    background-color: #f7eed9;
    color: #8e3e1f;
    border: 1px solid #8e3e1f;
}

.secondary-btn:hover {
    background-color: #e7d7c6;
}

/* 智能体列表 */
.agent-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.agent-item {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.agent-item:hover {
    background-color: #70301a;
}

.agent-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    font-size: 0.9rem;
}

.agent-buttons {
    display: flex;
    gap: 5px;
}

.agent-add-to-main,
.agent-delete {
    opacity: 0;
    transition: opacity 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 5px;
}

.agent-add-to-main {
    color: #8bc34a;
}

.agent-delete {
    color: #ffcdd2;
}

.agent-item:hover .agent-add-to-main,
.agent-item:hover .agent-delete {
    opacity: 1;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 15px;
    background-color: #8e3e1f;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.preview-chat {
    flex: 1;
    overflow-y: auto;
    background-color: #fffdf7;
    border: 1px solid #e7d7c6;
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.preview-message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    line-height: 1.5;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.preview-message.user-message {
    background-color: #e7f0e4;
    align-self: flex-end;
    margin-left: auto;
    border: 1px solid #c3dab9;
}

.preview-message.ai-message {
    background-color: #8e3e1f;
    align-self: flex-start;
    color: #fff;
    border: 1px solid #7a331a;
}

.preview-input {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #e7d7c6;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    box-sizing: border-box;
}

.preview-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.preview-input button {
    padding: 10px 15px;
    background-color: #8e3e1f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .personality-options {
        grid-template-columns: 1fr;
    }
    
    .modules-container {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
}

/* 我的智能体页面样式 */
.my-agents-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(142, 62, 31, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e7d7c6;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* 智能体卡片 */
.agent-card-large {
    background-color: #f9f5ea;
    border-radius: 10px;
    border: 1px solid #e7d7c6;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(142, 62, 31, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.agent-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(142, 62, 31, 0.15);
}

.agent-card-header {
    background-color: #8e3e1f;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-card-name {
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.agent-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.agent-card-description {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.agent-card-info {
    margin-top: auto;
}

.agent-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.agent-card-category {
    background-color: rgba(142, 62, 31, 0.1);
    color: #8e3e1f;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
}

.agent-card-footer {
    padding: 10px 15px;
    background-color: rgba(142, 62, 31, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e7d7c6;
}

.agent-card-created {
    font-size: 0.8rem;
    color: #888;
}

.agent-card-actions {
    display: flex;
    gap: 10px;
}

.agent-card-action {
    background: none;
    border: none;
    color: #8e3e1f;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.agent-card-action:hover {
    background-color: rgba(142, 62, 31, 0.1);
}

/* 空智能体提示 */
.empty-agents {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(142, 62, 31, 0.02);
    border-radius: 10px;
    border: 1px dashed #e7d7c6;
}

.empty-agents-icon {
    font-size: 3rem;
    color: #d3c0a8;
    margin-bottom: 15px;
}

.empty-agents h3 {
    font-size: 1.3rem;
    color: #8e3e1f;
    margin-bottom: 10px;
}

.empty-agents p {
    color: #888;
    margin-bottom: 20px;
}

.create-agent-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #8e3e1f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.create-agent-btn:hover {
    background-color: #70301a;
    transform: translateY(-2px);
}

/* 智能体操作模态框 */
.action-modal {
    max-width: 400px;
}

.agent-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.edit-btn {
    background-color: #2196f3;
    color: white;
}

.edit-btn:hover {
    background-color: #1976d2;
}

.delete-btn {
    background-color: #f44336;
    color: white;
}

.delete-btn:hover {
    background-color: #d32f2f;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: 1fr;
    }
}

/* 智能体操作按钮 */
.agent-action-btn {
    background-color: #f7eed9;
    color: #8e3e1f;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    width: 100%;
}

.agent-action-btn:hover {
    background-color: #e7d7c6;
}

.agent-action-btn.delete {
    background-color: #fff0f0;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.agent-action-btn.delete:hover {
    background-color: #ffeaea;
}

.agent-actions {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

/* 打字中的提示样式 */
.typing-indicator {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    margin: 0 2px;
    background-color: #8e3e1f;
    border-radius: 50%;
    opacity: 0.4;
    animation: typingAnimation 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* 错误消息样式 */
.preview-message.error {
    color: #d32f2f;
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}

/* 默认智能体样式 */
.agent-card-large.default-agent {
    border: 2px solid #8e3e1f;
    box-shadow: 0 5px 15px rgba(142, 62, 31, 0.2);
    position: relative;
}

.agent-card-large.default-agent::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    background-color: #8e3e1f;
    border-radius: 50%;
    z-index: 1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid white;
}

.official-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.official-badge i {
    margin-right: 3px;
    font-size: 0.7rem;
}

/* 智能体对话框的新布局 */
.agent-chat-layout {
    display: flex;
    gap: 20px;
    height: 100%;
    min-height: 500px;
}

.agent-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 500px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.agent-info-sidebar {
    width: 280px;
    background-color: #f9f5ea;
    border-radius: 8px;
    border: 1px solid #e7d7c6;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.agent-info-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7d7c6;
}

.agent-info-header h3 {
    color: #8e3e1f;
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.agent-info-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.agent-info-section {
    margin-bottom: 15px;
}

.agent-info-section h4 {
    color: #8e3e1f;
    margin: 0 0 8px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.agent-info-section h4 i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.agent-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.agent-info-tag {
    background-color: rgba(142, 62, 31, 0.1);
    color: #8e3e1f;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
}

.agent-info-modules {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.agent-info-module {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

.agent-info-module i {
    color: #8e3e1f;
    margin-right: 5px;
    font-size: 0.8rem;
}

.agent-personality-traits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.personality-trait {
    font-size: 0.85rem;
    color: #555;
}

.trait-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}

.trait-bar {
    height: 6px;
    background-color: #e7d7c6;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.trait-value {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #8e3e1f;
    border-radius: 3px;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 媒体查询适配移动设备 */
@media (max-width: 768px) {
    .agent-chat-layout {
        flex-direction: column;
    }
    
    .agent-info-sidebar {
        width: 100%;
        max-height: 200px;
    }
}

/* 步骤导航按钮 */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e7d7c6;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prev-btn {
    background-color: #f0f0f0;
    color: #666;
}

.prev-btn:hover {
    background-color: #e0e0e0;
}

.next-btn {
    background-color: #8e3e1f;
    color: white;
}

.next-btn:hover {
    background-color: #7a331a;
}

.complete-btn {
    background-color: #4caf50;
    color: white;
}

.complete-btn:hover {
    background-color: #3d8b40;
}

/* 步骤进度指示器 */
.step-progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e7d7c6;
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    flex: 1;
    max-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e7d7c6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 14px;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background-color: #8e3e1f;
    border-color: #8e3e1f;
    color: white;
}

.step-indicator.active .step-label {
    color: #8e3e1f;
    font-weight: bold;
}

.step-indicator.completed .step-number {
    background-color: #4caf50;
    border-color: #4caf50;
    color: white;
}

.step-indicator.completed .step-label {
    color: #4caf50;
}

/* 消息弹窗 */
.message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-width: 350px;
}

.message-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.message-popup.error {
    background-color: #ffebee;
    border-left: 4px solid #d32f2f;
    color: #d32f2f;
}

.message-popup.praise {
    background-color: #f1f8e9;
    border-left: 4px solid #7cb342;
    color: #33691e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.praise-icon {
    color: #ff9800;
    font-size: 20px;
    animation: spin 1.5s ease infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}

.message-popup.success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-icon {
    color: #4caf50;
    font-size: 20px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .step-progress-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-indicator {
        flex: 0 0 40%;
    }
    
    .message-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* 隐藏智能体列表 */
#agent-list {
    display: none;
} 