/* 侧边栏菜单样式 */
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.menu-item:hover {
  background-color: rgba(59, 130, 246, 0.1);
}
.menu-item-active {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-weight: 500;
}

/* 资源点进度条样式 */
.resource-progress {
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}
.resource-progress-bar {
  height: 100%;
  background-color: #3b82f6;
  border-radius: 9999px;
}

/* 隐藏滚动条 */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* 教育组件库下拉菜单样式 */
#components-submenu {
  background-color: #f9fafb;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-top: 0.25rem;
}

/* 组件库中的节点样式 */
#components-submenu .workflow-node {
  background-color: white;
  border-radius: 0.375rem;
  padding: 0.5rem;
  cursor: grab;
  transition: all 0.2s;
  margin-bottom: 0.25rem;
  width: auto;
  position: static;
}

#components-submenu .workflow-node:hover {
  background-color: #f3f4f6;
}

#components-submenu .workflow-node:active {
  cursor: grabbing;
}