#notifications-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 90%;
    pointer-events: none; /* Para que no bloqueen clics detrás */
}

.notification {
    padding: 16px 24px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideDown 0.5s forwards;
    pointer-events: auto; /* Permite cerrar si tienes botón */
}

.notification.success { background: #28a745; }
.notification.error   { background: #dc3545; }
.notification.info    { background: #007bff; }

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}
                