.wrap--narrow {
  max-width: 560px;
}

.drop {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: 28px 18px;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}

.drop--over {
  border-color: var(--color-green);
  background: var(--color-green-dim);
}

.drop--filled {
  border-style: solid;
  border-color: var(--color-green);
}

.drop__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.drop__text {
  color: var(--color-text-dim);
  font-size: 0.92rem;
  line-height: 1.45;
  pointer-events: none;
}

.drop__name {
  color: var(--color-text);
  font-weight: 600;
  word-break: break-all;
}

.input--spaced {
  margin-top: 10px;
}

.btn--block {
  width: 100%;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: var(--color-surface-2);
  overflow: hidden;
  margin-bottom: 16px;
}

.progress__bar {
  height: 100%;
  width: 0;
  background: var(--color-green);
  transition: width 0.15s linear;
}

.result {
  margin-top: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-green);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.result__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.result__label {
  color: var(--color-text-dim);
  font-size: 0.78rem;
  min-width: 88px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
