/* AURA demo styles */
.step-btn {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px; padding: 12px 14px; border: 1px solid #e2e8f0; border-radius: 10px;
  background: #f8fafc; text-align: left; transition: all .15s; cursor: pointer;
}
.step-btn:hover { background: #eff6ff; border-color: #93c5fd; transform: translateY(-1px); }
.step-btn i { color: #0284c7; font-size: 15px; }
.step-btn span { font-weight: 600; font-size: 13px; }
.step-btn em { font-style: normal; font-size: 11px; color: #94a3b8; }
.step-btn.warn { background: #fffbeb; border-color: #fde68a; }
.step-btn.warn:hover { background: #fef3c7; }
.step-btn.warn i { color: #d97706; }
.step-btn.danger { background: #fef2f2; border-color: #fecaca; }
.step-btn.danger:hover { background: #fee2e2; }
.step-btn.danger i { color: #dc2626; }
