/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Styles for the file upload button */
.file-upload-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Styles for the progress container */
#progress-container {
  margin-top: 20px;
}

/* Styles for the progress bar */
progress {
  width: 100%;
  height: 20px; /* You can change the height if you like */
  background-color: #eee;
  border: 1px solid #ccc;
}

/* To style the value inside the progress bar */
progress::-webkit-progress-value {
  background-color: blue;
}

progress::-moz-progress-bar {
  background-color: blue;
}

/* Styles for the file preview area */
#file-preview {
  margin-top: 20px;
}

/* Styles for the buttons */
.button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

/* Styles for the success message */
#success-section {
  text-align: center;
  margin-top: 20px;
}

