body {
  font-family: Arial, sans-serif;
}

#file-upload-container {
  text-align: center;
  margin: 6px;
  margin-right: 90px;
  margin-bottom: 30px;

}

#file-input {
  display: none;
}
#file-label {
  display: inline-block;
  padding: 2px 15px;
  margin: 10px;
  color: #fff;
  background-color: #ae3524;
  border-radius: 5px;
  cursor: pointer;
}
/* #progress-container {
  margin-top: 20px;
  width: 100%;
  height: 20px;
  background-color: #f1f1f1;
}

#progress-bar {
  height: 100%;
  width: 0;
  background-color: #4caf50;
} */

#progress-container {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  height: 25px; /* Set the desired height for the progress bar */
  background-color: #f0f0f0; /* Set the background color */
  border-radius: 5px; /* Add border-radius for rounded corners if needed */
}

#progress-bar {
  width: 0;
  height: 100%;
  text-align: center;
  line-height: 25px; /* Match the height of the progress container */
  color: #fff; /* Set the text color */
  background-color: #4caf50; /* Set the background color of the progress bar */
  border-radius: 5px; /* Add border-radius for rounded corners if needed */
}
