.shopping-list-item {
  font-size: 1.125rem;
  padding: 0.5rem 0;
  user-select: none;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}


.shopping-list-item-name {
  font-size: 1.125rem;
  flex: 1;
  line-height: 1.5;
}

.checkbox:checked ~ .shopping-list-item-name {
  text-decoration: line-through;
  opacity: 0.6;
}


