
.ys-image-rounded img {
    border-radius: 25px;
}

/* Wrapper to hide overflow */
.ys-scrolling-line2 div {
    width: 100%; /* Adjust width as needed */
    overflow: scroll;
    white-space: nowrap;
    background-color: #f0f0f0; /* Optional: Background color */
    padding: 10px 0;
    border-top: 2px solid #ccc; /* Optional: Top border */
    border-bottom: 2px solid #ccc; /* Optional: Bottom border */
}

/* Scrolling Content */
.ys-scrolling-content2 div {
    display: inline-block;
    padding-left: 100%; /* Start from the right */
    animation: scroll-left 15s linear infinite;
    font-size: 18px; /* Adjust text size */
}

/* Keyframes for scrolling effect */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}