/* Make each code cell a vertical flex container */
.cell {
  display: flex;
  flex-direction: column;
}

/* Ensure outputs are shown first */
.cell .cell-output {
  order: 1;
}

/* Place the code-fold toggle after the output */
.cell details.code-fold {
  order: 2;
  margin-top: 0.5rem; /* optional spacing */
}