#panel {
    position: relative;
    width: 320px;
    height: 256px;
    background: #333;
    display: grid;
    grid-template-columns: repeat(5, 64px);
    grid-template-rows: repeat(4, 64px);
    gap: 0;
    border: 2px solid #555;
}

.no-spacing {
    --bs-gutter-x: 0;
}

.rounded-pill {
    border-radius: 1rem !important;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.player {
  transition: transform 0.3s ease;
  z-index: 10;
}

.cell {
    width: 64px;
    height: 64px;
    border: 1px solid #444;
    box-sizing: border-box;
}

.item {
    pointer-events: none;
    image-rendering: pixelated;
    user-select: none;
}

.tray {
    width: 100%;
    min-height: 104px;
    margin-top: 20px;
    gap: 20px;
    padding: 20px;
    background: #222;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tray-item {
    width: 64px;
    height: 64px;
    cursor: grab;
}

.tray-image {
    width: 64px;
    height: 64px;
    overflow: hidden;
    image-rendering: pixelated;
}

@media (max-width: 991px) {
    .vh-100 {
        height: auto !important;
    }
    .app-show {
        display: flex !important;
    }
    .desktop-show {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .app-show {
        display: none !important;
    }
    .desktop-show {
        display: flex !important;
    }
}