.text-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 50px;  /* Set the height of the ticker box */
    color: #000;
    font-size: 20px;
    line-height: 50px;  /* Vertically center text */
    padding: 0 10px;
    box-sizing: border-box;
}

.text-carousel {
    display: flex;
    animation: scrollText 15s linear infinite;
}

.text-carousel p {
    margin: 0;
    padding-right: 50px;
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
