File size: 1,933 Bytes
c993983
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab7559f
c993983
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.tutorial-panel {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 250px;
  bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 1200;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  overflow: hidden;
}

.tutorial-collapsed {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1200;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.tutorial-collapsed:hover {
  background: var(--surface-hover);
}

.tutorial-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tutorial-header h3 {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 700;
}

.tutorial-close {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
}

.tutorial-scroll {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.tutorial-step {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.step-circle {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--text-on-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text);
}

.step-content p {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

.tutorial-footer {
  margin-top: 24px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 0.75rem;
}

.tutorial-footer p {
  margin: 0;
}