﻿.MensajeEnPantalla-Superposicion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* bien por encima */
}

.MensajeEnPantalla-Contenido {
    border-radius: 12px;
    max-width: 82vw;
    max-height: 82vh;
    overflow: auto;
    padding-bottom: 5rem;
}
