.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: auto; /* let it adjust based on text size */
    line-height: 1.2; /* improves readability for big text */
    text-transform: uppercase;
    font-size: 80px; /* adjust as needed */
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff; /* ensure it’s visible */
    white-space: nowrap; /* keeps text in one line for marquee */
    overflow: visible; /* prevent clipping */
    text-align: center; /* centers the text horizontally */
}

.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: 'Segoe UI', 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;
}
