body {
    font-family: Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    opacity: 1;
}

h1, h2, h3 {
    color: #333;
}

.container {
    margin-top: 20px;
}

.order {
    border: 1px solid #dfe3e6;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #fff;
}

.copy-icon {
  position: absolute;
  bottom: 10px; /* Ajuste en fonction de la marge que tu souhaites par rapport au bas du bloc */
  right: 10px; /* Ajuste en fonction de la marge que tu souhaites par rapport à la droite du bloc */
  cursor: pointer; /* Pour indiquer visuellement que l'icône est cliquable */
}

.clipboard-message {
  position: absolute;
  bottom: 10px;
  right: 45px; /* Ajuste en fonction de la position de l'icône pour que le texte ne chevauche pas l'icône */
  display: none; /* Masquer par défaut */
}

.footer-space {
    height: 50px;
}

.pre-container {
    margin-bottom: 20px;
    border: 1px solid #dfe3e6;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.table-bordered {
    border: 1px solid #dfe3e6;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    margin-top: 15px;
}

.clipboard-message {
  position: absolute;
  bottom: 30px; /* Ajustez cette valeur selon vos besoins */
  right: 10px;
  background-color: #f8f9fa; /* Couleur de fond légère */
  padding: 5px;
  border-radius: 5px;
  display: none; /* Initialement caché */
}

@media (max-width: 800px) {
    .buttons-container {
        flex-direction: column;
    }
}

.position-relative {
  position: relative;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  /* Animation pour faire apparaître les champs un par un */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group, .form-check {
  opacity: 0; /* Démarre avec une opacité de 0 */
  animation: fadeIn 1s ease forwards; /* Animation avec durée et type */
}

/* Styles pour la transition de page */
.page-fade-out {
  animation: pageFadeOut 0.5s ease-out forwards;
}

.page-fade-in {
  animation: pageFadeIn 1s ease-in forwards;
}

@keyframes pageFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}