.scrolling-text {
    width: 100%;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px; /* Default font size (can be customized via shortcode) */
    font-family: Arial, sans-serif; /* Default font family */
}

.scrolling-text p {
    position: absolute;
    white-space: nowrap;
    animation: scroll-left linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}