#seven-podcast-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.seven-podcast-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    max-height: 50px;
}

.seven-podcast-title a,
.seven-episode-title a {
    text-decoration: none;
}

.seven-podcast-title, .seven-podcast-title a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.seven-episode-title, .seven-episode-title a, #episode-duration {
    font-size: 17px;
}

#seven-play-pause-button {
    font-size: 25px;
    background: #fff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}


#seven-podcast-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden; /* Prevent overflow of episode title */
}

.seven-podcast-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%; /* Make sure the text container takes full width */
}

.seven-episode-title {
    position: relative;
    overflow: hidden;
}

.seven-episode-title a {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    will-change: transform;
}

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

.scroll {
    animation: scroll-text 10s linear infinite; /* Adjust speed as needed */
}