fieldset.form-group legend {
  border-bottom: 1px solid #dee2e6;
}

.form-label {
  font-weight: bold;
}

.nopadding > *:not(:first-child) {
  padding-left: 1px !important;
}
.nopadding > *:not(:last-child) {
  padding-right: 1px !important;
}

.cdk-drag-preview {
  text-align: center;
  align-items: center;
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #777;
  text-decoration: none;
  border: 1px solid #dee2e6;

  box-sizing: border-box;
  border-radius: 4px;
  box-shadow:
    0 2px 2px -3px rgba(0, 0, 0, 0.2),
    0 2px 2px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.cdk-drag-placeholder {
  opacity: 0;
}
.cdk-drag-animating {
  border: 1px solid #dee2e6;
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}

.dnd-list.cdk-drop-list-dragging .dnd-item:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}

.dnd-list {
  min-height: 100px; /* Reserve space */
  width: 100%;
  border: 1px dashed #ccc; /* Optional: visual cue */
  padding: 5px;
  background-color: #f9f9f9;
}

.dnd-item {
  display: flex;
  flex-direction: row;
  cursor: move;
}

.no-transition {
  transition: none !important;
}
