.dropfile {
  border: 3px dashed #ccc;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: #999;
  height: 600px;
  margin-bottom: 20px;
  overflow: auto;
}

.dropfile:hover {
  border-color: #aaa;
}

.dropfile .fas {
  font-size: 64px;
  margin-bottom: 10px;
  color: #999;
}

.actions {
  text-align: center;
}

#dropfile .dz-preview {
  display: inline-block;
  text-align: center;
}

.dz-message{
  padding-top:200px;
}

.dropfilebtn {
  font-size: 18px;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #2a93d5;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropfilebtn:hover {
  background-color: #1e6ea7;
}

.note{
  text-align: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 20%;
  right: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  width : 60%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  overflow: auto;
  text-align: center;
  max-width: 50px;  /* Modifiez selon vos besoins */
  max-height: 150px; /* Modifiez selon vos besoins */
  margin: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.progress-bar-df {
  width: 90%; /* Ajustez selon votre besoin */
  height: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto; /* Centrer la barre de progression */
}

.progress-bar-inner {
  height: 100%;
  width: 0;
  background-color: #4CAF50;
  transition: width 0.1s ease;
}

.progress-bar-text {
  padding-top: 3rem;
  font-size: 14px;
  text-align: center;
}