.layer {
  width: 100%;
  display: flex;
  gap: 12px;
  background-color: var(--bgc);
  padding: 12px;
}
.layer > * {
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  image-rendering: pixelated;
  cursor: url("textures/iron-pickaxe.png"), auto;
}
.diamond-deepslate {
  background-image: url("textures/diamond-deepslate.png");
}
.debug {
  background-image: url("textures/unknown.png");
}
.destroy {
  width: 100%;
  height: 100%;
  filter: brightness(50%);
  z-index: 100;
  opacity: 0;
  user-select: none;
}
