.task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.task-item.completed strong {
  color: var(--muted);
  text-decoration: line-through;
}

.task-item.completed p {
  color: var(--success);
}

.task-item form {
  flex: 0 0 auto;
}

@media (max-width: 650px) {
  .task-item {
    align-items: stretch;
    flex-direction: column;
  }

  .task-item form .button {
    width: 100%;
  }
}
