.delete_file{
  margin-left: 10px;
  border: 1px solid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #00AAD6
}
.delete_file:hover{
  opacity: 0.5;
}
.mt-10 {
  margin-top: 10px !important;
}
.btn-confirm button.uploading {
  border: 6px solid #CED6D9;
  background-color: #CED6D9;
  pointer-events: none;
}


/* -------------------------------------- */
.removeFileArea__input {
    display: flex;
    cursor: pointer;
    background-color: #db3e27;
    color: #fff;
    border: none;
    padding: 3px 8px;
    border-radius: 4px;
    margin: 14px 0px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 100px;
    min-width: 120px;
    text-align: center;
    justify-content: center;
}

.removeFileArea__input:hover {
  background-color: #cc0000; 
}

.removeFileArea__input a{
  color: #fff!important; 
  font-size: 12px !important;
  margin: unset!important;
}

.removeFileArea__input label {
  margin: 0; 
}

/* ------------ Popup Confirm ----------- */
.custom-confirm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.confirm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(202, 202, 202, 0); 
  animation: fadeIn 0.5s ease-in forwards; 
}

.button-container{
  display: flex;
  justify-content: space-between;
}
.confirm-box {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.5s ease-in-out forwards; 
}

.confirm-box.hidden {
  animation: fadeOut 0.5s ease-out forwards;
}

.confirm-button {
  margin: 0 10px;
  padding: 5px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.confirm-button.yes {
  background-color: #f44336;
  color: #fff;
}

.confirm-button.no {
  background-color: #434141;
  color: #fff;
}

.confirm-button.yes:hover, .confirm-button.no:hover {
  opacity: 0.8;
}

.confirm-text{
  width: 100%;
  height: 30px;
  font-size: 14px;
}



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

@keyframes slideIn {
  from {
    transform: translate(-50%, -70%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}

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


.delete-file-link {
  display: none;
}

.uploaded-file {
  display: none;
}