.ddu-uploader-wrap {
  background: #0f1117;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px;
  color: #f5f7fb;
}

.ddu-help-text {
  margin: 0 0 12px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.ddu-upload-trigger {
  appearance: none;
  border: 1px solid rgba(255,255,255,.16);
  background: #131722;
  color: #f4f7ff;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.ddu-upload-trigger:hover,
.ddu-upload-trigger:focus {
  background: #181d2a;
  border-color: rgba(255,255,255,.24);
  outline: none;
}

.ddu-file-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.ddu-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}

.ddu-file-row.is-uploading {
  opacity: .72;
}

.ddu-file-row.is-removing {
  opacity: .5;
}

.ddu-file-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #eef3ff;
  font-size: 14px;
}

.ddu-file-remove {
  appearance: none;
  border: 1px solid rgba(255,95,95,.42);
  background: rgba(255,95,95,.08);
  color: #ff6b6b;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.ddu-file-remove:hover:not(:disabled) {
  background: rgba(255,95,95,.16);
  border-color: rgba(255,95,95,.72);
  color: #ff8585;
}

.ddu-file-remove:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.ddu-upload-errors {
  margin-top: 10px;
  min-height: 20px;
  color: #ff8f8f;
  font-size: 13px;
}

.ddu-has-error {
  border-color: rgba(255,143,143,.55);
  box-shadow: 0 0 0 1px rgba(255,143,143,.14);
}


.ddu-file-main {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 8px;
}

.ddu-file-status {
  font-size: 12px;
  color: rgba(255,255,255,.66);
}

.ddu-progress {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.ddu-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f8cff 0%, #7db3ff 100%);
  transition: width .18s ease;
}
