#imageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8); /* fond sombre semi-transparent */
    display: none; /* caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 9999; /* toujours au-dessus de tout */
}

#imageOverlay img {
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease-in-out;
    cursor: zoom-out;
}

.lc-emoji-wrapper {
    width: 100% !important;
}

.lc-emoji-wrapper input {
    width: 100% !important;
}