/* Estilos generales del modal */
.mp-mensaje-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.mp-mensaje-box {
    background: #fff;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease-in-out;
    text-align: center;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.mp-mensaje-cerrar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}
.mp-mensaje-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}
.mp-mensaje-texto {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}
.mp-mensaje-boton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.mp-mensaje-boton:hover {
    background-color: #005a94;
}
.mp-abrir-mensaje {
    padding: 10px 18px;
    font-size: 15px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    margin: 10px 0;
}
.mp-abrir-mensaje:hover {
    background-color: #555;
}
