body {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: rgb(50, 50, 50);
}
#step {
  padding: 0.2rem;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrap {
  box-sizing: border-box;
  min-width: 60px;
  /* width: 300px; */
  height: fit-content;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
}
.process {
  min-width: 60px;
  border-radius: 20px;
  border: 3px dashed white;
  padding: 1rem;
  height: fit-content;
}
.process {
  color: white;
}
.queue,
.stack {
  border: 3px dashed lightslategray;
}
.column {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.flex {
  display: flex;
}
.flow {
  overflow: scroll;
  padding: 1rem;
}
#generator {
  position: relative;
}
#manualTask {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
#manualTask.show {
  display: block;
}
@media (max-width: 800px) {
  body {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }

  .flex {
    flex-direction: column;
    gap: 0.5rem;
  }

  .column {
    align-items: center;

    gap: 0.5rem;
  }

  .wrap,
  .process {
    min-width: auto;
    width: 90vw;
    padding: 0.5rem;
  }

  #step {
    top: 95%;
    font-size: 0.9rem;
  }

  #manualTask {
    top: 30px;
    width: 90vw;
  }

  .flow {
    padding: 0.5rem;
  }
}
