.upload-detail {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 0.5em;
  font-weight: 400;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  gap: 0.5em;
}
.upload-detail .header {
  text-align: center;
  color: #87189D;
  font-weight: 600;
  margin: 0.5em;
}
.upload-detail .file-progress-list {
  max-height: 15em;
  overflow: auto;
  white-space: nowrap;
  scrollbar-gutter: stable both-edges;
}
.upload-detail .file-progress-list .file-item {
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-left: 1em;
  white-space: nowrap;
}
.upload-detail .file-progress-list .file-item .file-path {
  padding-right: 1em;
}
.upload-detail .file-progress-list::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
.upload-detail .file-progress-list::-webkit-scrollbar-track {
  border-radius: 5px;
}
.upload-detail .file-progress-list::-webkit-scrollbar-track:hover, .upload-detail .file-progress-list::-webkit-scrollbar-track:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.upload-detail .file-progress-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #87189D;
}
.upload-detail .file-progress-list::-webkit-scrollbar-thumb:hover {
  background-color: #721585;
}
.upload-detail .file-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.upload-detail .file-group span:first-child {
  font-weight: 550;
}
.upload-detail .file-group::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  background: #d3d3d3;
  z-index: 1;
}
.upload-detail .retry {
  color: darkorange;
  font-weight: 600;
}