.no-li-points {
  list-style: none;
  padding-left: 0;
}
.todo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  min-height: 3rem;
}

.todo-item > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-grow: 1;
  margin-left: 1rem; /* Add left margin to create space from article edge */
}

.todo-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 !important;
  flex-grow: 1;
  padding: 0.5rem 0;
}

/* Add right margin to the nav to balance the left margin */
.todo-item nav {
  flex-shrink: 0;
  margin: 0;
  margin-right: 1rem; /* Add right margin to create space from article edge */
}

.todo-item input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}

.todo-item button.no-border {
  border: none !important;
  padding: 0.5rem;
  margin: 0;
}

.offset-md-2.col-md-8 form fieldset[role="group"] {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.offset-md-2.col-md-8 ul {
  padding: 0;
  margin: 0;
}

.no-li-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--muted-border-color);
}

.no-li-points:last-child {
  border-bottom: none;
}
