.file-preview-list {
  border-left: 1px solid;
  border-right: 1px solid;
  border-image: repeating-linear-gradient(white, white 10px, black 10px, black 20px) 1;
  padding: 8px;
  flex-wrap: wrap;
  min-height: 100px;
  position: relative;
}
.file-preview-list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-image: repeating-linear-gradient(90deg, white, white 10px, black 10px, black 20px) 1;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.file-preview-list::before {
  content: "\f574";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.file-preview-list.dragging {
  border: solid !important;
}

.file-preview {
  position: relative;
  z-index: 5;
}
.file-preview > i {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 20;
}
.file-preview > img {
  cursor: pointer;
  max-height: 300px;
  max-width: 300px;
}
.file-preview[target] {
  cursor: pointer;
}
