.tasklist {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 33%;
    min-width: 300px;
    max-height: 50vh;
    overflow-y: scroll;
    background-color: rgba(72, 72, 72, 0.75);
    color: white;
    padding: 5px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    pointer-events: none;
    transition-duration: 0.5s;
}

.tasklist.tasklistHover {
  opacity: 0.2;
}

.tasklist > ul > li {
    list-style: none;
    background-image: url(Circle.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 15px;
    padding-left: 20px;
    font-weight: bold;
    margin-top: 5px;
    font-size: 1em;
}

.tasklist > ul > li.checked {
    background-image: url(Circle_checkmark.svg);
    font-weight: normal;
    margin:0;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #363636 #ffffff00;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff00;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #363636;
    border-radius: 10px;
    border: 3px solid #ffffff00;
  }
