.wpvb-video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wpvb-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 768px) {
    .wpvb-video-background {
        height: auto;
    }

    .wpvb-video-background video {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        object-fit: contain;
    }
}

.wpvb-video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    display: none;
    /* CachÃ© par dÃ©faut */
}

.wpvb-video-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.wpvb-video-controls button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}