
                                    .chart-line-animation {
                                        stroke-dasharray: 300;
                                        stroke-dashoffset: 300;
                                        animation: drawLineLoop 3s ease-in-out infinite;
                                    }
                                    .chart-dot-animation {
                                        opacity: 0;
                                        animation: fadeInLoop 3s ease-in-out infinite;
                                    }
                                    @keyframes drawLineLoop {
                                        0% { stroke-dashoffset: 300; }
                                        50% { stroke-dashoffset: 0; }
                                        100% { stroke-dashoffset: 0; }
                                    }
                                    @keyframes fadeInLoop {
                                        0%, 40% { opacity: 0; }
                                        50%, 100% { opacity: 1; }
                                    }
                                