html {
  touch-action: none;
  overflow: hidden;
}

.dragging-active-card {
  opacity: 0;
}

.cloned-card {
  transform: rotate(3deg);
  border: 2px solid rgb(0, 170, 255);
  border-radius: 15px;
}

.dragging-active-list {
  position: relative;
}

.dragging-active-list::before {
  background-color: #ffffffd0;
  content: "";
  position: absolute;
  z-index: 500;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 12px;
}

.cloned-list {
  transform: rotate(3deg);
}