/* 基础footer样式 */
.nona-workflow-footer,
.nona-minimal-footer,
.nona-default-footer {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

/* Workflow Footer 特定样式 */
.nona-workflow-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nona-workflow-footer .workflow-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 20px;
}

.nona-workflow-footer button {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.workflow-save-btn {
  background: #f0f0f0;
  border: 1px solid #ddd;
}

.workflow-publish-btn {
  background: #007cba;
  color: white;
  border: none;
}

/* Minimal Footer 样式 */
.nona-minimal-footer {
  text-align: center;
  padding: 10px;
}

/* Default Footer 样式 */
.nona-default-footer {
  background: #f8f9fa;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #eee;
}
