.pst-banner-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pst-banner-scroll {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: pst-scroll linear infinite;
}

.pst-banner-content {
    display: flex;
    align-items: center;
    padding-right: 50px; /* Space between the end of text and the start of the next loop */
}

@keyframes pst-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pst-pause-on-hover:hover .pst-banner-scroll {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pst-banner-container {
        padding: 10px 0;
    }
    .pst-banner-content {
        padding-right: 30px;
    }
}
