#wk_youtube_data {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
	overflow: hidden;
}

#wk_youtube_datalist {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

#wk_youtube_datalist li {
    min-width: 310px;
    margin-right: 10px;
}

.youtube_feed_container {
    text-align: center;
}

.wk_youtube_img {
    max-width: 100%;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease;
}

.wk_youtube_img:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.wk_youtube_lebal {
    margin-top: 5px;
    font-weight: 600;
}

.bx-prev,
.bx-next {
    position: absolute;
    top: 40%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 3px;
    user-select: none;
    text-decoration: none;
}

.bx-prev {
    left: 0;
}

.bx-next {
    right: 0;
}

/* Modal */
.youtube_modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.youtube_modal_content {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 85vw;
    max-height: 85vh;
}

.youtube_modal_close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
