.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 90s linear infinite;
}

.marquee-list:hover {
    animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  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;
}

/* ✅ Add this section */
.no-videos {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    font-style: italic;
    color: #999;
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Raleway', sans-serif;
    animation: none !important; /* prevent it from sliding */
}
/* end */

.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;
}
