/* Video Player Styles */
.video-container {margin:0 auto 1rem;width: revert;}


.video-background {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #000000;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.375rem;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f7941dbd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-play-overlay i {
    color: #fff;
    font-size: 24px;
     /* Center the play icon */
}

.video-container video {
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Responsive video */
@media (max-width: 768px) {
    .video-play-overlay {
        width: 50px;
        height: 50px;
    }
    
    .video-play-overlay i {
        font-size: 20px;
    }
}
