
            /* Estilos para el modal */
            .modal {
                display: none; /* Oculto por defecto */
                position: fixed; 
                z-index: 1; 
                left: 0;
                top: 0;
                width: 100%; 
                height: 100%; 
                overflow: auto; 
                background-color: rgba(0, 0, 0, 0.4); 
                padding-top: 60px;
                opacity: 0;
                transition: opacity 0.5s ease;
            }
             .card {
            width: 330px;
            height: 80px;
            border-radius: 8px;
            box-sizing: border-box;
            padding: 10px 15px;
            background-color: #ffffff;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 15px;
            }
            .wave {
            position: absolute;
            transform: rotate(90deg);
            left: -31px;
            top: 32px;
            width: 80px;
            fill: #fc0c0c3a;
            }
            .icon-container {
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fc0c0c48;
            border-radius: 50%;
            margin-left: 8px;
            }
            .icon {
            width: 17px;
            height: 17px;
            color: #d10d0d;
            }
            .message-text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex-grow: 1;
            }
            .message-text,
            .sub-text {
            margin: 0;
            cursor: default;
            }
            .message-text {
            color: #d10d0d;
            font-size: 17px;
            font-weight: 700;
            }
            .sub-text {
            font-size: 14px;
            color: #555;
            }
            .cross-icon {
            width: 18px;
            height: 18px;
            color: #555;
            cursor: pointer;
            }

            /* Mostrar el modal con la animación de entrada */
            .modal.show {
                display: block;
                opacity: 1;
            }

            /* Estilos para el contenido del modal */
            .modal-content {
                position: fixed;
                bottom: 10px;
                right: 10px;
                animation: slide-in 0.5s forwards;
            }

            /* Animación de entrada */
            @keyframes slide-in {
                from {
                    transform: translateY(50px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            /* Animación de salida */
            @keyframes slide-out {
                from {
                    transform: translateY(0);
                    opacity: 1;
                }
                to {
                    transform: translateY(50px);
                    opacity: 0;
                }
            }


