/* CSS específico para compatibilidade com Microsoft Edge - Apenas funcionalidades */

/* Melhora o comportamento de drag and drop no Edge - sem alterações visuais */
.img-drag-up {
    touch-action: none !important;
    -ms-touch-action: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    pointer-events: auto !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.div-cenario {
    touch-action: none !important;
    -ms-touch-action: none !important;
    pointer-events: auto !important;
}

/* Correções específicas para Edge Legacy - apenas funcionalidades */
@supports (-ms-ime-align: auto) {
    .img-drag-up {
        -ms-touch-action: manipulation !important;
    }
    
    .div-cenario {
        -ms-touch-action: manipulation !important;
    }
}
