.todo-card {
  margin-top: 50px;
  margin-bottom: 50px;
}
.todo-card .todo-list {
  list-style: none;
  margin: 0;
  overflow: auto;
  padding: 0;
  height: 300px;
}
.todo-card .todo-list li {
  border-radius: 2px;
  background-color: #f8f9fa;
  border-left: 2px solid #e9ecef;
  color: #495057;
  margin-bottom: 4px;
  padding: 10px 10px 10px 0px;
  position: relative;
}
.todo-card .todo-list li.completed .todo-text {
  text-decoration: line-through;
  color: #6c757d;
}
.todo-card .todo-list li.completed .badge {
  opacity: 0.4;
}
.todo-card .todo-list li .todo-text {
  flex: 1;
  font-weight: 500;
  margin-left: 5px;
}
.todo-card .todo-list li .edit-icon {
  position: absolute;
  right: 40px;
  top: 3px;
  color: #6c757d;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.todo-card .todo-list li .action-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.todo-card .todo-list li .action-icons i {
  cursor: pointer;
  margin-left: 10px;
  font-size: 1rem;
}
.todo-card .todo-list li:hover .edit-icon {
  opacity: 1;
}
.todo-card .todo-list li:hover .action-icons {
  opacity: 1;
}
.todo-card .add-btn {
  text-align: right;
}
.todo-card .pagination .page-link {
  width: 30px;
  /* height: 30px; */
  line-height: 18px;
  padding: 4px !important;
  text-align: center;
  border-radius: 50% !important;
  margin: 0 2px !important;
  border-radius: 5px !important;
  color: #0c046b;
  border: 1px solid #ddd;
  transition: 0.3s;
}
.todo-card .pagination .page-link:hover {
  background-color: cornflowerblue;
  color: #fff;
}
.todo-card .pagination .page-item.active .page-link {
  background-color: #02bd0a;
  border-color: #02bd0a;
  color: #fff;
}
.todo-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid #dee2e6;
  background: #fff;
}
.todo-card .card-header h5 {
  margin: 0;
  font-weight: 600;
  color: #333;
}
.todo-card .card-header .pagination {
  margin: 0;
}
.todo-card .form-check-input {
  width: 22px;
  height: 22px;
  cursor: pointer;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .todo-card .todo-card .todo-list li {
    display: flex;
    align-items: flex-start;
  }
  .todo-card .todo-card .todo-list li .action-icons {
    position: unset;
    opacity: 1;
    transform: translateY(0%);
    margin-left: 8px;
    margin-top: -6px;
  }
  .todo-card .todo-card .todo-list li .action-icons i {
    cursor: pointer;
    margin-left: -2px;
    font-size: 1rem;
  }
  .todo-card .todo-card .todo-list li .edit-icon {
    position: unset;
    opacity: 1;
  }
  .todo-card .todo-card .todo-list li .todo-text {
    font-size: 13px;
  }
  .todo-card .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .todo-card .card-header nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}/*# sourceMappingURL=todolistDesign3.css.map */