.create-step-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.create-progress {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  background: rgba(var(--black-color-rgb), 0.06);
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.create-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    rgba(var(--primary-color-rgb), 0.75)
  );
  box-shadow: 0 0 8px rgba(var(--primary-color-rgb), 0.35);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.create-step-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: var(--st-text-xs);
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  background: rgba(var(--primary-color-rgb), 0.2);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  color: var(--black-color);
  letter-spacing: 0.02em;
}

.create-card-body {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.create-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  opacity: 0;
  animation: createEmptyIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes createEmptyIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.create-empty-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  background: rgba(var(--primary-color-rgb), 0.05);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--primary-color-rgb), 0.4);
}

.create-empty-text {
  font-size: var(--st-text-base);
  color: var(--color-neutral-border-light);
  max-width: 220px;
  line-height: 1.5;
}

.create-btn-back {
  min-width: 100px;
}

.create-btn-back.hidden-btn,
.create-btn-draft.hidden-btn {
  opacity: 0;
  pointer-events: none;
}

.create-btn-next {
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding: 0.6rem 1.25rem;
}
