.modal-notif-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        max-width: 500px;
        background-color: #1a1a1a; /* Fondo oscuro elegante */
        color: #ffffff;
        border: 1px solid #333333;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        z-index: 999999; /* Asegura que flote sobre todo el contenido */
        transform: translateY(150%); /* Oculto por defecto abajo */
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Clase que se activa con JS para mostrarlo */
    .modal-notif-container.mostrar {
        transform: translateY(0);
    }

    .modal-notif-content {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    /* Dimensiones estrictas de 100px X 100px */
    .modal-notif-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #ff4500; /* Toque de color anime */
    }

    .modal-notif-text-box {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .modal-notif-text {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #cccccc;
    }

    .modal-notif-btn {
        background-color: #ff4500;
        color: #ffffff;
        border: none;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.1s ease;
        text-align: center;
    }

    .modal-notif-btn:hover {
        background-color: #e03d00;
    }

    .modal-notif-btn:active {
        transform: scale(0.98);
    }

    /* Responsivo para pantallas de celulares */
    @media (max-width: 600px) {
        .modal-notif-container {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: 12px 12px 0 0;
            border-left: none;
            border-right: none;
            border-bottom: none;
        }
        .modal-notif-content {
            flex-direction: column;
            text-align: center;
            padding: 15px;
            gap: 15px;
        }
    }