/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
*/
    /* background-color: #f0f0f0; */
/*
}
*/

/*
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
*/

.tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter {
    flex-basis: 30%;
}

/* Style for Heading */
.center-text {
    text-align: center;
}

.title span {
    --total: calc(var(--duration) + var(--delay));
    position: relative;
    display: block;
    color: transparent;
    overflow: hidden;
    animation: revealText 1s var(--total) forwards
}

.title span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: #bb93fc;
    animation: rollIn var(--duration) var(--delay) forwards,
        rollOut var(--duration) var(--total) forwards;
}

.title span:nth-child(2)::after {
    border-top: 3px solid #896ab9;
}

@keyframes revealText {
    to {
        /* color: #000; */
        /* background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet); */
        -webkit-background-clip: text;
        color: black;
        background-clip: text;
    }
}

@keyframes rollIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes rollOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(105%);
    }
}


/* Added custom styles for select option boxes */
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Style for selected option */
select option:checked {
    background-color: #007bff;
    color: #fff;
}

/* Style for option on hover */
select option:hover {
    background-color: #f0f0f0;
}

/* Added styles for search input */
input[type="search"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.video-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.video-item {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.video-name {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.video-details {
    color: #666;
    font-size: 14px;
}

.btn-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #0056b3;
}

.video-item:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    transform: scale(1.04);
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}