.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    outline: none;
	border: 0px solid transparent;
    height:100px;
}

.marquee-content {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
	border: 0px solid transparent;
    outline: none;
	height:100px;
}

.marquee-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    animation: marquee 45s ease-in-out infinite;
}

.marquee-list:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { 
        transform: translateX(100%);
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
    }
    2% {
        transform: translateX(70%);
        animation-timing-function: linear;
    }
    100% { 
        transform: translateX(-100%);
    }
}

.marquee-item {
    display: inline-flex;
    margin-right: 20px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    min-width: 150px;
    font-family: 'Raleway', sans-serif;
}

.marquee-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.marquee-title {
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-video-btn {
    background: transparent;
    color: #ff4444;
    cursor: pointer;
    padding: 0 5px;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
    border: none;
    outline: none;
    font-family: 'Raleway', sans-serif;
}

.remove-video-btn:hover {
    opacity: 1;
}