@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');


/* Le Tableau des données */ 
table {
  padding-top: 15px ;
  padding-bottom: 6px;
    width: 10%;
    margin: 30px auto;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    animation: appear 0.5s ease-in-out;
    border-spacing: 0;
      
    
    
  }


  @keyframes appear {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  th, td {
    border: 1px solid #d9d9d9;
    padding: 12px 20px;
    text-align: center;
  }
  
  th {
    background-color: #f2f2f2;
    font-size: 1.1em;
    font-weight: bold;
  }
  
  td {
    font-size: 0.9em;
    color: #333333;
    transition: background-color 0.2s ease-in-out;
  }
  
  td:hover {
    background-color: #f5f5f5;
  }
  /* Le Tableau des données */ 
  
h1 {
  display: flex;
  margin: auto;
  font-family: 'Inter', sans-serif;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 10px;

  }

  li, th, h3 {
    font-family: 'Inter', sans-serif;
  }

p, td {
    font-family: 'Inter', sans-serif;
}

#bvn {
    color: black; /* couleur de base du texte */
    transition: all 0.3s ease; /* transition pour l'effet hover */
}

#bvn:hover {
  color: rgba(0, 0, 0, 0.178); /* rend le texte transparent lorsque la souris survole */
}


.image {
  width: 100%;
}

#acc1 {
    background-color: rgba(247, 245, 245, 0);
}

#ici {
  background-color: #007AFF; /* couleur de fond bleu foncé d'Apple */
  color: white; /* police blanche */
  border-radius: 4px; /* bords arrondis */
  padding: 0px 20px; /* espace intérieur */
  font-size: 16px; /* taille de police */
  font-weight: bold; /* police en gras */
  transition: transform 0.2s ease-in-out; /* pour l'animation hover */
}

#ici:hover {
  cursor: pointer; /* curseur en forme de main */
  transform: scale(1.1); /* agrandissement lors du hover */
  box-shadow: 0px 0px 10px #007AFF; /* ombre sur le bouton */
}

.gris {
background-color: #f2f2f2;
display: flex;
align-items: center;
justify-content: center;
}

h3 {
margin-top: 15px;
text-align: center;
}
#tableau {
  width: 100%;
}

/* FORMULAIRE*/
.form-container {
  width: 70%;
  max-width: 600px;
  margin: 50px auto; /* pour centrer le formulaire */
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 0 20px #ccc; /* pour ajouter une ombre */
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

/* Style pour l'input de type submit */
.form-submit {
  width: 100%;
  background-color: #007AFF;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

/* Effet hover pour les boutons */
.form-submit:hover {
  background-color: #0062cc;
  transform: scale(1.01); /* pour agrandir le bouton lors du hover */
}

/* Style pour les labels */
label {
font-size: 18px;
font-weight: bold;
display:block;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

/* Style pour les champs obligatoires */
span {
color: red;
}

/* Animation pour les champs d'entrée */
.form-input, .form-textarea {
transition: all 0.3s ease-in-out;
}

.form-input:focus, .form-textarea:focus {
background-color: #fff;
box-shadow: 0 0 8px 0 #007AFF;
outline: none;
}

/* Style pour aligner les champs "Prénom" et "Nom" */
.form-row {
display: flex;
}

.form-col {
flex: 1; /* pour répartir l'espace également entre les deux colonnes */
}

/* Pour aérer le formulaire */
.form-row + .form-row {
margin-top: 30px;
}

/* Style pour se rapprocher de la marque Apple */
.apple-btn { 
  width: 100%;
background-image: linear-gradient(to bottom, #007AFF, #0062cc); /*
 pour un effet de dégradé */
box-shadow: 0 0 8px 0 #007AFF; /* pour une ombre */ }

#nom {
  width: 100%;
}
#prenom {
  width: 95%;
}

input:focus {
  outline: none;
  border-color: #007AFF;
  transition: border-color 0.3s ease-in-out;
}

/* FIN FORMULAIRE*/

.reponse {
text-align: center;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;


}

/*HEADER */ 



nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px;
  background-color: #f2f2f2;
  opacity: 100%;
  box-shadow: 0px 3px 10px #333333;
  position: fixed;
  top: 0;
  width: 1080px;
  z-index: 999;

}
body {
  padding-top: 80px; 
  width: 1080px;
  margin: 0 auto;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  position: relative;
}
nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}
nav ul li a:hover {
  color: #007AFF;
}
nav ul li a:hover::before {
  width: 100%;
}
nav img {
  height: 75px;
    position: absolute;
    top: -1px;
    left: 46px;
}
.actif {
  color: #007AFF;
}

/* FOOTER */
footer {
  margin-top: auto;
  background-color: #f2f2f2;
  color: #333333;
  font-family: 'Helvetica Neue', sans-serif;
  width: 100%;
  position: relative;
  bottom: 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mille {
  width: 1080px;
margin: 0 auto;
}









