@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "poppins";
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 18px;
  background-color: bisque;
}

.container {
  border: solid 0.5px black;
  padding: 20px 30px;
  width: auto;
  text-align: center;
}

.taskContainer {
  padding: 5px;
  margin: 5px;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

#enterTask {
  width: 500px;
  height: 50px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  background-color: transparent;
}

.taskList > li {
  display: flex;
  justify-content: space-evenly;
  margin: 10px;
}

#deleteTask {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border: none;
  background-color: rgba(255, 99, 71, 0.3);
}

#addTask {
  height: 50px; 
  width: 55px;
  font-weight: 700;
  margin-left: 15px;
  border-radius: 5px;
  border: 0.5px solid rgb(40, 255, 40);
  background-color: rgb(40, 255, 40);
}

#taskCheckBox[type="checkbox"] {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 1px solid gray;
  border-radius: 200%;
  background-color: transparent;
  cursor: pointer;
}

#taskCheckBox[type="checkbox"]:checked {
  border: none;
  border-radius: 20%;
  background-image: url("https://images.emojiterra.com/google/noto-emoji/unicode-17.0/color/svg/2705.svg");
}

.completed .task-text {
    text-decoration: line-through;
    opacity: 0.4;
}

.filters {
    margin: 15px 0;
}

.filter-btn {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: white;
}

.filter-btn.active {
    background: #28ff28;
    border-color: #28ff28;
}