body{
  font-family: Arial, Helvetica, sans-serif;
}
.todoList-div, .input-display{
  display: grid;
  grid-template-columns: 150px 150px 100px;
  column-gap: 20px;
  margin-bottom: 15px;
}
.delete-button{
  background-color: red;
  color: white;
  border: none;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}
.add{
  background-color: green;
  color: white;
  border: none;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}

.todoInput, .dateInput{
  padding: 10px 7px;
  font-size:15px;
}