/* Style pour le conteneur du menu */
.navigation {
    background-color: #007bff;
}

/* Style pour la liste non ordonnée */
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

/* Style pour les éléments de la liste */
.nav li {
  margin: 0 10px; /* Espacement entre les éléments du menu */
}

/* Style pour les liens du menu */
.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Au survol des liens */
.nav a:hover {
  text-decoration: underline;
}


body{
  font-family: Helvetica, sans-serif;
  background: url("wallpaper.jpg") no-repeat;
  background-size: cover;  
  text-align: center;
}

h1{
  text-align: center;
}
.navigation{
  display: flex;                /* Transformation en flexbox */
  padding:0;                    /* Suppression des marges internes */
  background-color: black;       /* Ajout de la couleur d'arrière-plan */
  justify-content: space-around;/* Alignements des liens dans le menu */
  margin: 2px;
}
  
.navigation a{
  color : black;
  text-decoration:none;
  list-style: none;
  display:block;               
  min-width: 120px; 
  margin: 0.5rem;               /* Marges externes */
  padding: 0.4rem 0;            /* Marges internes */
  text-align: center;           /* Centrage du texte */ 
  color:white;
  
}

.navigation li{
  list-style: none;
}



/* Style du conteneur principal */
.formulaire {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f8f8;
}

/* Style des champs et des libellés */
.formulaire input {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.formulaire a {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Style du bouton de soumission */
.formulaire input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #FFF69A;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

/* Lien "Mot de passe oublié ?" */
.formulaire a[href="oubli.php"] {
  color: #FFF69A;
  text-decoration: none;}

.infos-persos{
  background-color: white;
  display: inline-block;
  text-align: left;
  padding: 10px;
  border: medium solid black;
}

thead
{
  background-color: #333;
  color: #fff;
  outline: 3px solid black;

}
table
{
  border: 3px solid black;
  padding: 2px;
  display: inline-block;
  color: white;

}
tr{
  text-align: center;
}
.tabeleve{
  display: inline-block;
}

.type{
  color:white;
}

a{
  color:black;
}


