body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f7f7f7;
}

#videoElement {
    max-width: 100%;
    max-height: 300px;
    display: block;
}

#photoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    max-width: 200px;
}

/* Styles pour les éléments du body */
#fileInput,
#takePhotoButton,
#videoElement,
#fileLabel,
#photoContainer {
    display: block;
    margin-bottom: 20px;
}

/* Styles pour les boutons et les champs d'entrée */
#fileInput,
#takePhotoButton {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

#fileInput:hover,
#takePhotoButton:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

#fileInput:focus,
#takePhotoButton:focus {
    outline: none;
    box-shadow: 0 0 5px #007BFF;
}

#fileInput {
    display: none;
}
#fileLabel {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#captureButton {
    display: none; /* Masquer par défaut */
}

#videoElement {
    display: none; /* Masquer par défaut */
}
#photoContainer img {
    max-width: 100%; /* Pour s'assurer que l'image ne dépasse pas la largeur du conteneur */
}