
.transition-ease-in-out {
  transition: all 0.25s ease-in-out;
}
.w-100 {
  width: 100%;
}
.sequence-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sequence-parent-wrap {
  border: 1px solid #ece7f6;
  border-radius: 18px;
  background: #faf8ff;
  overflow: hidden;
}
.sequence-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #f6f0ff;
  cursor: move;
}
.sequence-children {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sequence-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: #FAF8F5;
  border: 1px solid #e3f2fd;
  border-radius: 14px;
  cursor: move;
}

