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;
}

.btn-fixed-width {
  width: 150px;
}

.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;
}

.DEACTIVATED-alerts {
  position: fixed; /* Keeps it relative to the viewport/screen */
  top: 20px; /* Distance from the very top edge */
  width: 90%;
  /*left: 50%;           !* Move to the horizontal middle *!*/
  /*transform: translateX(-50%); !* Offset by half its own width to truly center it *!*/
  z-index: 9999; /* Ensure it stays above navbars and modals */
  /*width: auto;         !* Let it shrink to the content size *!*/
  /*min-width: 300px;    !* Optional: prevents it from being too tiny *!*/
  /*max-width: 90%;      !* Optional: prevents it from hitting screen edges on mobile *!*/
}
