body {
  font-family: "Poppins", sans-serif;
  background-color: #e7ecec;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.todo-container {
  background-color: #84a6a9;
  padding: 25px;
  border-radius: 10px;
  width: 750px;
  color: white;
}

.title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

/* INPUT GRID (TOPO) */
.todo-input-grid {
  display: grid;
  grid-template-columns: 1fr 150px 80px 80px;
  column-gap: 15px;
  margin-bottom: 26px;
  align-items: center;
}

.name-input,
.due-date-input {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  outline: none;
}

.add-todo-button {
  width: 80px;
  background-color: green;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  padding: 10px 0;
  font-weight: 500;
}

.add-todo-button:hover {
  background-color: #0a7a0a;
}

.reset-todo-button {
  width: 80px;
  background-color: #b30000;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  padding: 10px 0;
  font-weight: 500;
}

.reset-todo-button:hover {
  background-color: #800000;
}

/* LIST GRID (ALINHADA COM O TOPO) */
.todo-grid {
  display: grid;
  grid-template-columns: 1fr 150px 80px 80px;
  row-gap: 14px;
  align-items: center;
  font-size: 17px;
}

.delete-todo-button {
  background-color: #800000;
  color: white;
  border: none;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.delete-todo-button:hover {
  background-color: #4d0000;
}
