		/* 任务条基础样式 */
.editor-task-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* 稍微加高一点点，视觉更舒适 */
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center; /* 确保垂直居中 */
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 999999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* 状态文字和圆点 */
.bar-content {
    display: flex;
    align-items: center; /* 确保文字和按钮水平对齐 */
    gap: 20px;           /* 在文字和按钮之间强制留出 20px 间距 */
}

.bar-status {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #dfe6e9;
}
.dot {
    width: 8px;
    height: 8px;
    background: #55efc4; /* 亮绿色点表示在线/正常 */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px #55efc4;
}

/* 按钮样式 */
.btn-primary {
    background: #0984e3;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #74b9ff;
}

/* 关闭按钮 (X) */
.bar-close {
    background: transparent;
    border: none;
    color: #b2bec3;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}
.bar-close:hover {
    color: #ff7675; /* 悬停变红 */
}