.disable-dbl-tap-zoom {
    touch-action: manipulation;
}

/* In your CSS/SCSS file */
.dropzone {
    min-height: 120px;  /* Increase as needed */
    min-width: 600px;   /* Increase as needed */
    transition: min-height 0.2s, min-width 0.2s;
}
.dropzone.dragging {
    min-height: 180px;  /* Larger when dragging */
    min-width: 800px;
}
.mud-dropitem-placeholder{
    min-height: 50px;  /* Larger when dragging */
    min-width: 100px;
}
.image-container {
    position: relative;
    display: inline-block;
    max-width: 100px;
}
.trash-fab {
    position: absolute;
    top: -30px;
    right: 50px;
    opacity: 0;
    transition: opacity 1.75s;
    pointer-events: none; /* Not clickable until visible */
}
.edit-fab {
    position: absolute;
    top: -30px;
    right: -70px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none; /* Not clickable until visible */
}
.image-container:hover .trash-fab  {
    opacity: 1;
    pointer-events: auto;
}
.image-container:hover .edit-fab  {
    opacity: 1;
    pointer-events: auto;
}