/* 智能总结生成辅助平台 - 工具栏样式 */

/* ==== 工具栏 ==== */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==== 工具栏按钮 ==== */
.add-task-btn {
    padding: 8px 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-task-btn:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.add-task-btn::before {
    content: '+';
    font-size: 1rem;
    font-weight: 600;
}

.clear-all-btn {
    padding: 8px 16px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear-all-btn:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

.clear-all-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.clear-all-btn::before {
    content: '🗑';
    font-size: 0.875rem;
}

/* ==== 登出按钮 ==== */
.logout-btn {
    padding: 6px 12px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

/* ==== 默认设置按钮 ==== */
.default-settings-btn {
    padding: 8px 16px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.default-settings-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.default-settings-btn::before {
    content: '⚙';
    font-size: 0.875rem;
}