/* Superposition de la popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Assombrit l'arri�re-plan */
    z-index: 9999; /* Toujours au-dessus du contenu */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenu de la popup */
.popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

/* Vid�o plein �cran */
#video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Contr�les cam�ra */
.camera-controls {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 10;
}

/* Bouton de fermeture */
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.close-button:hover {
    background: #ff6666;
}


.popup-overlay {
    pointer-events: auto; /* Permet uniquement les interactions dans la popup */
}

body:not(.popup-active) .popup-overlay {
    pointer-events: none; /* Emp�che les clics en arri�re-plan */
}

.ets_mp_tab_content .ets-mp-input-groups .col-lg-6:first-child {
    display: none;
}