/*

Helps migrate sites designed from Bootstrap 3 to Bootstrap 5 - MUST have bootstrap5 and bootstrap-migrate as BODY classes
TRY WHERE POSSIBLE TO UPDATE HTML FOR FUTURE COMPATIBILITY

 CHANGES MADE:

 class="badge" --> class="badge bg-secondary text-light" */



/* .form-inline is removed from BS5 */
.bootstrap5.bootstrap-migrate .form-inline .form-control,
.bootstrap5.bootstrap-migrate .form-inline .input-group {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.bootstrap5.bootstrap-migrate label {
  margin-bottom: 0.5rem;
}

/* .well IS REMOVED FROM BOOTSTRAP 5 */
.bootstrap5.bootstrap-migrate .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.bootstrap5.bootstrap-migrate .well a {
  color: inherit;
}
/* Text wraps in buttons in bootstrap 5 */
.bootstrap5.bootstrap-migrate .btn {
  white-space: nowrap;
}
/* no link underlines a in Bootstrap 3 */
.bootstrap5.bootstrap-migrate a {
  text-decoration: none;
}