* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

section {
  text-align: center;
  margin: 0 0 25px 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #8ea604;
  color: #fff;
  padding: 10px;
  text-align: center;
}

main {
  flex: 1;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  main {
    padding: 20px;
  }
}
@media only screen and (min-width: 992px) {
  main {
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  main {
    padding: 50px;
  }
}

#todoTable {
  border-collapse: collapse;
  width: 100%;
  margin: 25px 0 25px 0;
}
#todoTable td,
#todoTable th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
#todoTable td:nth-child(2) {
  text-align: center;
}
#todoTable th {
  background-color: #8ea604;
  color: #fff;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: left;
}
#todoTable th:nth-child(1),
#todoTable th :nth-child(1) {
  width: 90%;
}
#todoTable th:nth-child(2),
#todoTable th :nth-child(2) {
  width: 10%;
}
#todoTable tr:nth-child(even) {
  background-color: #f5bb00;
  color: #fff;
}
#todoTable tr:hover {
  background-color: #bf3100;
  color: #fff;
}

footer {
  background-color: #8ea604;
  color: #fff;
  padding: 5px;
  text-align: center;
  bottom: 0;
  width: 100%;
}

input[type=text] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.tableButtons, .buttons {
  background-color: #ec9f05;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.tableButtons:hover, .buttons:hover,
.tableButtons active,
.buttons active {
  background-color: #d76a03;
}
.tableButtons:active, .buttons:active {
  transform: scale(0.9);
}

.buttons {
  padding: 10px 20px;
  margin: 5px 0 0 0;
}

.tableButtons {
  padding: 10px;
}

/* Dark mode */

/*# sourceMappingURL=styles.css.map */
