.video-play .video-card-list {
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 5px;
}

.video-play .video-card-list.video-side .video-title {
    font-weight: 600;
    text-transform: capitalize;
}

.video-play .video-card-list.listing-side {
    padding: 20px;
}

.video-play .video-card-list.listing-side .list-play {
    display: flex;
    align-items: center;
}

.video-play .video-card-list.listing-side .list-play .img-box {
    border: 2px solid #e1e1e1;
    width: 95px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
}

.video-play .video-card-list.listing-side .list-play .img-box img {
    width: 100%;
    height: 100%;
}

.video-play .video-card-list.listing-side .detail-side {
    margin-left: 15px;
    width: fit-content;
}

.video-play .video-card-list.listing-side .detail-side h6 {
    font-size: 15px;
    text-transform: capitalize;
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 0px;
    cursor: pointer;
    color: #222;
}

.video-play .video-card-list.listing-side .detail-side span {
    font-size: 12px;
    color: #666;
}

.register-page span.text-danger{
    font-size: 11px;
    margin-top: 5px;
    display: block;
}

.register-page.authentication-wrapper {
    min-height: 100%;
}


/*slider*/

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

    .swiper-slide:hover {
        transform: translateY(-5px);
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
        font-weight: bold;
    }

/* Pagination */
.swiper-pagination-bullet {
    background: #007bff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-horizontal{
    padding-bottom: 80px !important;
}
/* Responsive design */
@media (max-width: 1024px) {
    .swiper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 10px;
    }

    .swiper {
        height: 180px;
        padding: 15px 0;
    }
}


