/* style.css */

/* Style de base */
body, html {
    height: 100%;
    margin: 0;
    background-color: #6495ed; /* Couleur bleue du ciel */
    display: flex;
    flex-direction: column;
   /* align-items: center;
    text-align: center;*/
}

/* Titres */
h1, h2, h3 {
    color: #ffffff; /* Couleur du texte en blanc */
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; /* Ombre portée */
    margin-top: 20px;
}

/* Conteneur de la caméra */
#camera {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Flux vidéo */
#video {
  width: 30vw;
    max-width: 55%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 1px solid #fff;
    background-color: #000;
/*background:#3f57c3;
      z-index:0;
      margin:0 auto;
      margin-bottom:-5px;
      width:100%;
      transform: scaleX(-1);
*/
}

/* Bouton Prendre une photo */
#capture {
    margin-top: 10px;
    font-size: 1.25em;
    padding: 10px 20px;
}

/* Canvas pour l'image capturée */
#snapshot {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

#canvas {
    display: none;
    max-width: 80vw;
    border: 1px solid #ccc;
}

/* Contrôles */
#controls {
    margin-top: 20px;
    display: flex;
    flex-direction:column;
    align-items: center;
}

#controls button {
    font-size: 1.25em;
    padding: 10px 20px;
    margin: 5px;
}

#sliders {
    margin-top: 10px;
}

#sliders label {
    display: flex;
    align-items: center;
    margin: 5px;
    color: #ffffff;
}

#sliders input[type="range"] {
    margin-left: 10px;
}

/* Liens */
a:link {
    color: yellow; /* Jaune pour les liens non visités */
}

a:visited {
    color: #ffd88a; /* Orange clair pour les liens visités */
}

/* Conteneur des boutons de rotation */
#rotationButtons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#rotationButtons button {
    font-size: 1.25em;
    padding: 10px 20px;
}

/* Styles pour les boutons d'exportation */
#controls button {
    font-size: 1.25em;
    padding: 10px 20px;
    margin: 5px;
}
