#mensajeExito {
    position: fixed;
    top: -50px; /* Empieza fuera de la pantalla */
    left: 0;
    width: 100%;
    background-color: #28a745; /* Color verde */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    transition: top 0.5s ease-in-out; /* Animación suave */
    z-index: 1000;
}