File size: 3,811 Bytes
8a01471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* ============================================
   TOOLBAR - WIREFRAME AESTHETIC
   ============================================ */

.toolbar {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-secondary, #0f0f0f);
  border: 1px solid var(--border-primary, rgba(180, 255, 57, 0.3));
  z-index: 100;
  flex-wrap: wrap;
  max-width: calc(100vw - 380px);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.section {
  display: flex;
  align-items: center;
  gap: 6px;
}

.divider {
  width: 1px;
  height: 20px;
  background: var(--border-primary, rgba(180, 255, 57, 0.3));
}

.fileInput {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px dashed var(--border-primary, rgba(180, 255, 57, 0.3));
  color: var(--text-primary, #e0e0e0);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button:hover {
  border-color: var(--accent-primary, #b4ff39);
  color: var(--accent-primary, #b4ff39);
}

.button:active {
  background: rgba(180, 255, 57, 0.1);
}

.label {
  color: var(--text-primary, #e0e0e0);
  font-size: 10px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.select {
  padding: 4px 8px;
  padding-right: 24px;
  background: transparent;
  border: 1px solid var(--border-primary, rgba(180, 255, 57, 0.3));
  color: var(--text-primary, #e0e0e0);
  font-size: 10px;
  cursor: pointer;
  appearance: none;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23b4ff39' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
}

.select:hover {
  border-color: var(--accent-primary, #b4ff39);
}

.select option {
  background: var(--bg-secondary, #0f0f0f);
  color: var(--text-primary, #e0e0e0);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary, #e0e0e0);
  font-size: 10px;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid var(--border-primary, rgba(180, 255, 57, 0.3));
  cursor: pointer;
  position: relative;
}

.checkbox input[type="checkbox"]:checked {
  background: var(--accent-primary, #b4ff39);
  border-color: var(--accent-primary, #b4ff39);
}

.checkbox input[type="checkbox"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--bg-primary, #0a0a0a);
}

.modelInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: auto;
  padding-left: 12px;
  border-left: 1px dashed var(--border-primary, rgba(180, 255, 57, 0.2));
}

.modelName {
  color: var(--accent-primary, #b4ff39);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modelStats {
  color: var(--text-primary, #e0e0e0);
  font-size: 9px;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .toolbar {
    max-width: calc(100vw - 32px);
  }
  
  .modelInfo {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-top: 8px;
    margin-top: 4px;
    border-left: none;
    border-top: 1px dashed var(--border-primary, rgba(180, 255, 57, 0.2));
  }
}