
/* Styles pour le modal */
.modalC {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1020;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Fond semi-transparent */
    justify-content: center;
    align-items: center;
  }
  
  .modalC .modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
  }
  
  .modalC .icon-container {
    margin: 10px auto;
  }
  
  .modalC .check-icon {
    width: 50px;
    height: 50px;
    stroke: #4CAF50; /* Couleur verte */
    animation: checkBounce 0.6s ease-out;
  }
  
  /* Animation d'apparition de l'icône */
  @keyframes checkBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
  }
  
  .modalC .message {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
  } 

  #finConfirmation{
    padding: 5px 10px;
  }

  #orderIDDisplay{
    font-weight: 900;
    color: rgb(32, 28, 7);
    
  }