body.container {
  background-image: url("images/todo-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.todoContent {
  background: rgba(255, 255, 255, 0.7);
}
ul li {
  position: relative;
  padding-left: 26px;
  color: #05312f;
  border-bottom: 1px groove #92afad;
  padding-bottom: 16px;
  padding-right: 40px;
}
ul li::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(images/radio-button.png);
  background-position: center;
  background-size: cover;
}
ul li.checked {
  color: #5a5959;
  text-decoration: line-through;
}
ul li.checked::before {
  background-image: url(images/accept.png);
}
.todoMain {
  background-color: #edeef0;
  border-radius: 30px;
}
#todo-input {
  padding: 6px 12px;
}
.todo-button {
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: #4bae4f;
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
}
.todo-button:hover {
  background-color: #3c8d3f;
}
#todo-items {
  max-height: 250px; /* Adjust the maximum height as needed */
  overflow-y: auto;
}

#todo-items li {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  position: relative;
  width: 100%;
  font-weight: 500;
}
#todo-items li span {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 0;
  border: 1px solid #666;
  border-radius: 50%;
}
#todo-items li span:hover {
  background-color: #4bae4f;
  color: #fff;
}

/* custom Scroll bar */

/* width */
#todo-items::-webkit-scrollbar {
  width: 7px;
  top: 5px;
}

/* Track */
#todo-items::-webkit-scrollbar-track {
  background: #140000;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/* Handle */
#todo-items::-webkit-scrollbar-thumb {
  background: #585757;
}

/* Handle on hover */
#todo-items::-webkit-scrollbar-thumb:hover {
  background: #544d4d;
}
