/* Fichier style.css */

body { 
    font-family: Arial, sans-serif; 
    padding: 20px;
    font-size: 16px; /* Définit la taille de la police pour tout le texte du document */ 
}

/* Style uniforme pour les zones de texte */
input[type="text"], textarea {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333333;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    box-sizing: border-box; /* Assure que le padding et la bordure sont inclus dans la largeur totale */
}

/* Begin Header description */
.header-container {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-link {
  color: white; /* Assure que le lien est blanc pour contraster avec le fond du header */
  text-decoration: none; /* Enlève le soulignement par défaut des liens */
  font-weight: bold; /* Optionnel: Met en gras le texte du lien */
  font-size: 32px;
}

/* Pour ajouter un peu d'interaction visuelle, vous pouvez changer l'apparence du lien lors du survol */
.home-link:hover {
  text-decoration: none; /* avec underline, ajoute un soulignement au survol pour indiquer que c'est cliquable  */
  color: #a9d1f7; /* Change la couleur du lien lors du survol (choisissez une couleur qui convient) */
}

/* Vous pouvez également vouloir styliser davantage le .faq-link pour qu'il s'harmonise avec le design du header */
.faq-link {
  color: white; /* Assure que le lien est blanc */
  text-decoration: none; /* Enlève le soulignement par défaut */
  margin-left: 20px; /* Ajoute un peu d'espace à gauche du lien */
}

.faq-link:hover {
  text-decoration: none; /* Souligne au survol */
  color: #a9d1f7; /* Change la couleur au survol */
}


.header-container a {
  color: white;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
}

.language-selector {
  margin-left: 20px;
}

.version-info {
  margin-left: 20px;
}
/* End Header description */

/* Begin footer description */
.footer-container {
  background-color: #007BFF;
  color: white;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px; /* Adjust according to your maximum desired width */
  margin: 0 auto; /* Centering the footer content */
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 40px; /* Ajoute un peu d'espace à droite de chaque section */
}

.footer-section:last-child {
  margin-right: 0; /* Enlève la marge pour la dernière section pour éviter un espace supplémentaire inutile */
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li a, .footer-links li span {
  color: white;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.service-name {
  font-size: 24px; /* Adjust the font size as needed */
  font-weight: bold;
  cursor: default; /* No pointer effect as it's not clickable */
  text-shadow: none; /* Removing shadow effect */
}

.service-name:hover {
  color: #a9d1f7; /* Hover effect */
  cursor: default; /* Ensuring cursor doesn't change */
}

.footer-container {
  border-top: 2px solid #a9d1f7; /* Slight contrast */
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  width: 100%;
  font-size: 14px;
}
/* End footer description */

/*Beta disclaimer */
.beta-disclaimer {
  text-align: center;
  color: #959595; /* Moins de contraste */
  font-size: 12px; /* Taille de police plus petite */
}

.beta-disclaimer strong {
  color: #585858; /* Un peu plus de contraste pour le titre mais moins que le texte noir standard */
  font-size: 14px; /* Légèrement plus grand que le reste du texte */
}
/* End Beta disclaimer */

.right-align {
  display: flex;
  justify-content: flex-end;
}

.inline-kbd {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.inline-kbd div {
  margin-right: 5px;
}

.inline-kbd kbd {
  margin: 0 5px;
}

input[type="text"]:focus, textarea:focus {
    border-color: #007BFF;
}

a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid blue;
}

.word-count-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.word-count-label {
  margin-right: 5px;
}

/* Style uniforme pour les boutons */
.button, button, input[type="submit"], input[type="button"] {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 20px;
    outline: none;
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #0056b3;
}

/* Bouton secondaire - Exemple de personnalisation */
.button-secondary {
    background-color: #6c757d;
}

.button-secondary:hover {
    background-color: #545b62;
}

/* Centre le tableau sur la page */
table {
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse; /* Assure que les bordures soient bien gérées */
}

/* Masque les lignes du tableau et définit la taille de la police */
td, th {
    border: none;
    padding: 10px;
    font-size: 16px; /* Ajustez cette valeur selon vos besoins */
}

/* Style pour améliorer la présentation des cellules */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

.centered-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    .button, button, input[type="submit"], input[type="button"], input[type="text"], textarea {
        font-size: 14px;
        padding: 8px 12px;
    }
}

#error-message {
  background-color: #ffcdd2;
  color: #d32f2f;
  border: 1px solid #d32f2f;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  display: none; /* Commencez avec le message caché */
}


.spinner-overlay {
position: fixed; /* Positionne le spinner de manière fixe par rapport à la fenêtre du navigateur */
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5); /* Arrière-plan semi-transparent pour l'effet de surimpression */
 display: flex;
 justify-content: center; /* Centre horizontalement le spinner */
 align-items: center; /* Centre verticalement le spinner */
 z-index: 9999; /* S'assure que le spinner est au-dessus des autres éléments */
}



  .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e7cb10;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  color: black;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(0,0,0,.2);
  display: none; /* Caché par défaut */
  z-index: 1000; /* Assure qu'il reste au-dessus des autres éléments */
}

.cookie-consent-popup p {
  margin: 0 0 20px 0;
}

.cookie-consent-popup button {
  margin: 0 10px;
  padding: 10px 20px;
}