#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.item {
    position: relative;
    width: 110px;
    height: 110px;
    border: 1px solid #999;
    touch-action: manipulation;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.delete {
    position: absolute;
    top: 2px;
    right: 2px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
}
