  .separator {
  
    height: 5px;
    background-color:black;
    margin-top: 20px;
  }
  .custom-btn {
    background-color: #368006!important; /*#368006!important;  */
    /* border-color: #ffc107; */
}

  .custom-form {
    background-color: #FEF3C7!important; /*#368006!important;  */
    border-color: #ffc107;
}



.custom-btn:hover {
    background-color: #ffb400; /* Couleur orange-jaune légèrement plus foncée au survol */
    border-color: #ffb400; /* Couleur de la bordure au survol */
}
.custom-card {
  border: none;
}
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999; 
  width: 70px;
  height: 70px;
  background: #368006;
  border-radius: 50px;
  -webkit-mask: radial-gradient(circle 31px at 50% calc(100% + 13px),#000 95%,#0000) top 4px left 50%,
    radial-gradient(circle 31px,#000 95%,#0000) center,
    radial-gradient(circle 31px at 50% -13px,#000 95%,#0000) bottom 4px left 50%,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-repeat: no-repeat;
  animation: cu10 1.5s infinite;
}

@keyframes cu10 {
  0% {
    -webkit-mask-size: 0    18px,0    18px,0    18px,auto
  }

  16.67% {
    -webkit-mask-size: 100% 18px,0    18px,0    18px,auto
  }

  33.33% {
    -webkit-mask-size: 100% 18px,100% 18px,0    18px,auto
  }

  50% {
    -webkit-mask-size: 100% 18px,100% 18px,100% 18px,auto
  }

  66.67% {
    -webkit-mask-size: 0    18px,100% 18px,100% 18px,auto
  }

  83.33% {
    -webkit-mask-size: 0    18px,0    18px,100% 18px,auto
  }

  100% {
    -webkit-mask-size: 0    18px,0    18px,0    18px,auto
  }
}
.blur-effect {
  backdrop-filter: blur(5px); /* Ajustez la valeur de flou selon vos préférences */
}

/* Animation de l'effet de flou */
@keyframes blurAnimation {
  0% {
    backdrop-filter: blur(0px);
  }
  100% {
    backdrop-filter: blur(5px); /* Ajustez la valeur de flou selon vos préférences */
  }}
  
  
  
  
  
  
  
/* Style du modal */
.modal1 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Style de la fenêtre du modal */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Style pour le bouton de fermeture */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.buttons-container {
    display: flex;
    justify-content: center; /* Alignement horizontal au centre */
    align-items: center; /* Alignement vertical au centre */
}

.buttons-container button {
    margin: 0 10px; /* Espacement entre les boutons */
}

