.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 {
	-webkit-appearance: none;
    border: 1px solid rgba(47, 47, 47, 1) !important;
    background: rgba(20, 20, 20, 1) !important;
    color: #b2b2b2 !important;
    border-radius: 8px !important;
    padding: 10px 14px;
    line-height: 1.2;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
}

.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);
  position: relative;
}

.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: none !important;
  color: #ff6b6b;
  border-radius: 999px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 20px !important;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  background: transparent !important;
  border: none;
}

.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;
}
