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

body {
  background-color: #0d0714;
  color: #ffffff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.task-manager {
  width: 500px;
  color: #ffffff;
}

.add-task {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.add-task input {
  width: 100%;
  padding: 25px;
  border: 1px solid #3e1671;
  outline: none;
  border-radius: 8px;
  background-color: #1e1e1e;
  color: #ffffff;
  font-size: 16px;
  margin-right: 10px;
}
.add-task #add-btn {
  width: 100px;
  height: 70px;
  background-color: #6a1b9a;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease-in;
}
.add-task #add-btn:hover {
  background-color: #13cff0;
}

.tasks-section {
  margin-top: 20px;
}
.tasks-section h3 {
  margin-bottom: 10px;
  font-weight: normal;
  color: #b0b0b0;
}
.tasks-section .task-list .task-item {
  background-color: #15101c;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}
.tasks-section .task-list .task-item:hover {
  background-color: #2e2e2e;
}
.tasks-section .task-list .task-item span {
  font-size: 16px;
  color: #ffffff;
}
.tasks-section .task-list .task-item .actions {
  display: flex;
  gap: 10px;
}
.tasks-section .task-list .task-item .actions button {
  background: none;
  border: none;
  color: #8f8f8f;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.tasks-section .task-list .task-item .actions button:hover {
  color: #ffffff;
}
.tasks-section .task-list .task-item.completed {
  text-decoration: line-through;
  color: #00c853;
  background-color: #15101c;
}

.done-section .task-list .task-item {
  background-color: #121212;
  color: #00c853;
}
.done-section .task-list .task-item span {
  text-decoration: line-through;
  color: #00c853;
}/*# sourceMappingURL=style.css.map */