.job-detail__header {
  display: flex;
  justify-content: space-between;
  gap: var(--space--medium);
}

.job-detail__actions {
  display: flex;
  gap: var(--space--small);
}

.job-detail__input {
  --gap-between-steps: var(--space--base);

  position: relative;
  margin-bottom: var(--gap-between-steps);

  &:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: calc(var(--gap-between-steps) * -1);
    left: 50%;
    height: var(--gap-between-steps);
    width: var(--border-width--thick);
    background-color: var(--color--grayscale--05);
  }

  &.step--empty textarea:not(:focus) {
    border-color: var(--color--ui-danger-dark);
  }
}

.job-detail__step-delete {
  position: absolute;
  bottom: var(--space--small);
  right: var(--space--small);
}

.job-detail__CSV-upload {
  display: flex;
  flex-direction: row;
  gap: var(--space--small);
}
