/**
 * Styles pour le widget Voir Vidéo
 * 
 * Widget Elementor personnalisé affichant un bouton rond rouge
 * pour ouvrir une vidéo en lightbox
 */

.voir-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.voir-video-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 30px;
    box-sizing: border-box;
    user-select: none;
}

.voir-video-button:hover {
    transform: scale(1.05);
}

.voir-video-button:focus {
    outline: 2px solid #D01F2D;
    outline-offset: 3px;
}