        /* Container to hold the scrolling news notifications */
        .news-notifications-container {
            overflow: hidden;
            /* white-space: nowrap; */
            /* width: 100%; */
            width: 583px;
        }

        /* Apply the animation to the news notifications */
        .news-notifications {
            display: inline-block;
            animation: marquee 20s linear infinite; /* Adjust duration as needed */
            width: 70%;
            /* width: 100%; */
            /* width: fit-content; Adjust to content width */
            white-space: nowrap;
        }

        /* Define the animation */
        @keyframes marquee {
            0% {
                /* transform: translateX(100%); */ /*right to left*/
                transform: translateX(-100%); /*left to right*/
            }
            100% {
                /* transform: translateX(-100%); */ /*right to left*/
                transform: translateX(100%); /*left to right*/
            }
        }
        .news-notification {
            /* margin-right: 20px; Adjust spacing between individual news notifications */

            display: inline-block;
        }
