@jjlmoya/utils-alcohol 1.24.0 → 1.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-alcohol",
3
- "version": "1.24.0",
3
+ "version": "1.25.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -13,7 +13,7 @@
13
13
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
14
14
  color: #1e293b;
15
15
  }
16
- :global(.theme-dark) .alc-card {
16
+ .theme-dark .alc-card {
17
17
  background: #0f172a;
18
18
  border-color: #1e293b;
19
19
  color: #f1f5f9;
@@ -34,13 +34,13 @@
34
34
  }
35
35
 
36
36
  @media (min-width: 768px) { .alc-inputs-panel { border-right: 1px solid #e2e8f0; } }
37
- :global(.theme-dark) .alc-inputs-panel { border-color: #1e293b; }
37
+ .theme-dark .alc-inputs-panel { border-color: #1e293b; }
38
38
 
39
39
  .alc-sec {
40
40
  padding: 1.25rem 1.5rem;
41
41
  border-bottom: 1px solid #e2e8f0;
42
42
  }
43
- :global(.theme-dark) .alc-sec { border-color: #1e293b; }
43
+ .theme-dark .alc-sec { border-color: #1e293b; }
44
44
  .alc-sec:last-child { border-bottom: none; }
45
45
 
46
46
  .alc-sex-weight {
@@ -76,7 +76,7 @@
76
76
  background: #f1f5f9;
77
77
  border-radius: 0.75rem;
78
78
  }
79
- :global(.theme-dark) .sex-toggle { background: #1e293b; }
79
+ .theme-dark .sex-toggle { background: #1e293b; }
80
80
 
81
81
  .sex-btn {
82
82
  flex: 1;
@@ -97,7 +97,7 @@
97
97
  color: #4f46e5;
98
98
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
99
99
  }
100
- :global(.theme-dark) .sex-btn.selected {
100
+ .theme-dark .sex-btn.selected {
101
101
  background: #334155;
102
102
  color: #818cf8;
103
103
  }
@@ -119,7 +119,7 @@
119
119
  transition: border-color 0.2s;
120
120
  box-sizing: border-box;
121
121
  }
122
- :global(.theme-dark) .weight-input {
122
+ .theme-dark .weight-input {
123
123
  background: rgba(0,0,0,0.2);
124
124
  border-color: #334155;
125
125
  color: #f1f5f9;
@@ -155,7 +155,7 @@
155
155
  color: #475569;
156
156
  transition: all 0.15s;
157
157
  }
158
- :global(.theme-dark) .drink-add-btn {
158
+ .theme-dark .drink-add-btn {
159
159
  background: #1e293b;
160
160
  color: #94a3b8;
161
161
  }
@@ -200,7 +200,7 @@
200
200
  align-items: center;
201
201
  gap: 0.75rem;
202
202
  }
203
- :global(.theme-dark) .list-empty { color: #334155; }
203
+ .theme-dark .list-empty { color: #334155; }
204
204
  .list-empty-icon {
205
205
  width: 2.5rem;
206
206
  height: 2.5rem;
@@ -218,7 +218,7 @@
218
218
  border-radius: 10px;
219
219
  }
220
220
 
221
- :global(.drink-list-row) {
221
+ .drink-list-row {
222
222
  display: flex;
223
223
  align-items: center;
224
224
  justify-content: space-between;
@@ -227,26 +227,26 @@
227
227
  border-radius: 0.75rem;
228
228
  border: 1px solid #e2e8f0;
229
229
  }
230
- :global(.theme-dark) :global(.drink-list-row) {
230
+ .theme-dark .drink-list-row {
231
231
  background: #1e293b;
232
232
  border-color: #334155;
233
233
  }
234
234
 
235
- :global(.drink-row-info) {
235
+ .drink-row-info {
236
236
  display: flex;
237
237
  align-items: center;
238
238
  gap: 0.75rem;
239
239
  }
240
240
 
241
- :global(.drink-row-name) {
241
+ .drink-row-name {
242
242
  font-weight: 700;
243
243
  color: #334155;
244
244
  }
245
- :global(.theme-dark) :global(.drink-row-name) {
245
+ .theme-dark .drink-row-name {
246
246
  color: #e2e8f0;
247
247
  }
248
248
 
249
- :global(.drink-row-qty) {
249
+ .drink-row-qty {
250
250
  font-size: 0.75rem;
251
251
  background: #e0e7ff;
252
252
  color: #4f46e5;
@@ -254,12 +254,12 @@
254
254
  border-radius: 0.25rem;
255
255
  font-weight: 700;
256
256
  }
257
- :global(.theme-dark) :global(.drink-row-qty) {
257
+ .theme-dark .drink-row-qty {
258
258
  background: #312e81;
259
259
  color: #a5b4fc;
260
260
  }
261
261
 
262
- :global(.drink-row-del) {
262
+ .drink-row-del {
263
263
  display: flex;
264
264
  align-items: center;
265
265
  justify-content: center;
@@ -272,11 +272,11 @@
272
272
  cursor: pointer;
273
273
  transition: background 0.2s;
274
274
  }
275
- :global(.drink-row-del:hover) {
275
+ .drink-row-del:hover {
276
276
  background: #fef2f2;
277
277
  border-radius: 0.5rem;
278
278
  }
279
- :global(.theme-dark) :global(.drink-row-del:hover) {
279
+ .theme-dark .drink-row-del:hover {
280
280
  background: rgba(239,68,68,0.1);
281
281
  }
282
282
 
@@ -285,7 +285,7 @@
285
285
  flex-direction: column;
286
286
  background: #f8fafc;
287
287
  }
288
- :global(.theme-dark) .alc-results-panel { background: rgba(0,0,0,0.2); }
288
+ .theme-dark .alc-results-panel { background: rgba(0,0,0,0.2); }
289
289
 
290
290
  .bac-section {
291
291
  background: #4f46e5;
@@ -295,7 +295,7 @@
295
295
  overflow: hidden;
296
296
  flex-shrink: 0;
297
297
  }
298
- :global(.theme-dark) .bac-section { background: #4338ca; }
298
+ .theme-dark .bac-section { background: #4338ca; }
299
299
  .bac-bg-icon {
300
300
  position: absolute;
301
301
  top: 0;
@@ -382,12 +382,12 @@
382
382
  background: #dbeafe;
383
383
  color: #3b82f6;
384
384
  }
385
- :global(.theme-dark) .advice-icon-blue { background: rgba(59,130,246,0.2); }
385
+ .theme-dark .advice-icon-blue { background: rgba(59,130,246,0.2); }
386
386
  .advice-icon-amber {
387
387
  background: #fef3c7;
388
388
  color: #f59e0b;
389
389
  }
390
- :global(.theme-dark) .advice-icon-amber { background: rgba(245,158,11,0.2); }
390
+ .theme-dark .advice-icon-amber { background: rgba(245,158,11,0.2); }
391
391
  .advice-icon-svg {
392
392
  width: 1.25rem;
393
393
  height: 1.25rem;
@@ -418,7 +418,7 @@
418
418
  line-height: 1.6;
419
419
  border: 1px solid #fde68a;
420
420
  }
421
- :global(.theme-dark) .disclaimer {
421
+ .theme-dark .disclaimer {
422
422
  background: rgba(120,53,15,0.2);
423
423
  border-color: rgba(120,53,15,0.5);
424
424
  color: #f59e0b;
@@ -13,7 +13,7 @@
13
13
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
14
14
  color: #1e293b;
15
15
  }
16
- :global(.theme-dark) .beer-card {
16
+ .theme-dark .beer-card {
17
17
  background: #0f172a;
18
18
  border-color: #1e293b;
19
19
  color: #f1f5f9;
@@ -37,7 +37,7 @@
37
37
  padding: 1.25rem 1.5rem;
38
38
  border-bottom: 1px solid #e2e8f0;
39
39
  }
40
- :global(.theme-dark) .beer-sec { border-color: #1e293b; }
40
+ .theme-dark .beer-sec { border-color: #1e293b; }
41
41
  .beer-sec:last-child { border-bottom: none; }
42
42
 
43
43
  .step-header {
@@ -50,7 +50,7 @@
50
50
  color: #1e293b;
51
51
  }
52
52
 
53
- :global(.theme-dark) .step-header { color: #f1f5f9; }
53
+ .theme-dark .step-header { color: #f1f5f9; }
54
54
  .step-number {
55
55
  width: 1.75rem;
56
56
  height: 1.75rem;
@@ -63,7 +63,7 @@
63
63
  font-size: 0.75rem;
64
64
  flex-shrink: 0;
65
65
  }
66
- :global(.theme-dark) .step-number {
66
+ .theme-dark .step-number {
67
67
  background: #fff;
68
68
  color: #0f172a;
69
69
  }
@@ -86,12 +86,12 @@
86
86
  background: #f8fafc;
87
87
  cursor: pointer;
88
88
  }
89
- :global(.theme-dark) .selector-card {
89
+ .theme-dark .selector-card {
90
90
  border-color: #1e293b;
91
91
  background: #0c1527;
92
92
  }
93
93
  .selector-card:hover { border-color: #cbd5e1; }
94
- :global(.theme-dark) .selector-card:hover { border-color: #334155; }
94
+ .theme-dark .selector-card:hover { border-color: #334155; }
95
95
 
96
96
  .selector-content {
97
97
  position: relative;
@@ -118,7 +118,7 @@
118
118
  color: #1e293b;
119
119
  }
120
120
 
121
- :global(.theme-dark) .selector-label { color: #f1f5f9; }
121
+ .theme-dark .selector-label { color: #f1f5f9; }
122
122
 
123
123
  .selector-sub {
124
124
  font-size: 0.7rem;
@@ -128,7 +128,7 @@
128
128
  letter-spacing: 0.05em;
129
129
  }
130
130
 
131
- :global(.theme-dark) .selector-sub { color: #94a3b8; }
131
+ .theme-dark .selector-sub { color: #94a3b8; }
132
132
 
133
133
  .bg-el {
134
134
  position: absolute;
@@ -163,7 +163,7 @@
163
163
  letter-spacing: 0.1em;
164
164
  }
165
165
 
166
- :global(.theme-dark) .slider-label { color: #94a3b8; }
166
+ .theme-dark .slider-label { color: #94a3b8; }
167
167
 
168
168
  .temp-display {
169
169
  font-size: 1rem;
@@ -174,7 +174,7 @@
174
174
  border-radius: 0.4rem;
175
175
  }
176
176
 
177
- :global(.theme-dark) .temp-display {
177
+ .theme-dark .temp-display {
178
178
  background: #1e293b;
179
179
  color: #f1f5f9;
180
180
  }
@@ -187,9 +187,9 @@
187
187
  cursor: pointer;
188
188
  background: #e2e8f0;
189
189
  }
190
- :global(.theme-dark) .slider-custom { background: #334155; }
190
+ .theme-dark .slider-custom { background: #334155; }
191
191
  .slider-dark { accent-color: #0f172a; }
192
- :global(.theme-dark) .slider-dark { accent-color: #fff; }
192
+ .theme-dark .slider-dark { accent-color: #fff; }
193
193
  .slider-blue { accent-color: #3b82f6; }
194
194
  .slider-custom::-webkit-slider-thumb {
195
195
  -webkit-appearance: none;
@@ -217,12 +217,12 @@
217
217
 
218
218
  @media (min-width: 1024px) { .beer-result-panel { border-left: 1px solid #e2e8f0; } }
219
219
 
220
- :global(.theme-dark) .beer-result-panel {
220
+ .theme-dark .beer-result-panel {
221
221
  background: linear-gradient(to bottom right, #1e293b, #020617);
222
222
  color: #fff;
223
223
  }
224
224
 
225
- @media (min-width: 1024px) { :global(.theme-dark) .beer-result-panel { border-left-color: #334155; } }
225
+ @media (min-width: 1024px) { .theme-dark .beer-result-panel { border-left-color: #334155; } }
226
226
 
227
227
  .result-inner {
228
228
  width: 100%;
@@ -253,7 +253,7 @@
253
253
  color: #6366f1;
254
254
  }
255
255
 
256
- :global(.theme-dark) .empty-icon {
256
+ .theme-dark .empty-icon {
257
257
  background: #1e293b;
258
258
  color: #475569;
259
259
  }
@@ -268,7 +268,7 @@
268
268
  margin: 0;
269
269
  }
270
270
 
271
- :global(.theme-dark) .empty-title { color: #64748b; }
271
+ .theme-dark .empty-title { color: #64748b; }
272
272
 
273
273
  .empty-desc {
274
274
  color: #94a3b8;
@@ -276,7 +276,7 @@
276
276
  font-size: 0.875rem;
277
277
  }
278
278
 
279
- :global(.theme-dark) .empty-desc { color: #475569; }
279
+ .theme-dark .empty-desc { color: #475569; }
280
280
 
281
281
  .result-content {
282
282
  flex-direction: column;
@@ -305,7 +305,7 @@
305
305
  line-height: 1;
306
306
  }
307
307
 
308
- :global(.theme-dark) .result-time-num { color: #fff; }
308
+ .theme-dark .result-time-num { color: #fff; }
309
309
 
310
310
  .result-time-unit {
311
311
  position: absolute;
@@ -326,7 +326,7 @@
326
326
  margin: 0 0 0.5rem;
327
327
  }
328
328
 
329
- :global(.theme-dark) .result-est-label { color: #60a5fa; }
329
+ .theme-dark .result-est-label { color: #60a5fa; }
330
330
 
331
331
  .result-finish-time {
332
332
  font-size: 1.5rem;
@@ -335,7 +335,7 @@
335
335
  margin: 0;
336
336
  }
337
337
 
338
- :global(.theme-dark) .result-finish-time { color: #fff; }
338
+ .theme-dark .result-finish-time { color: #fff; }
339
339
 
340
340
  .result-meta-grid {
341
341
  display: grid;
@@ -351,7 +351,7 @@
351
351
  border: 1px solid #e2e8f0;
352
352
  }
353
353
 
354
- :global(.theme-dark) .result-meta-item {
354
+ .theme-dark .result-meta-item {
355
355
  background: rgba(30,41,59,0.5);
356
356
  border-color: #334155;
357
357
  }
@@ -370,7 +370,7 @@
370
370
  font-size: 0.875rem;
371
371
  }
372
372
 
373
- :global(.theme-dark) .result-meta-value { color: #fff; }
373
+ .theme-dark .result-meta-value { color: #fff; }
374
374
 
375
375
  .bubbles-layer {
376
376
  position: absolute;
@@ -15,7 +15,7 @@
15
15
  color: #18181b;
16
16
  }
17
17
 
18
- :global(.theme-dark) .carb-card {
18
+ .theme-dark .carb-card {
19
19
  background: #18181b;
20
20
  border-color: #27272a;
21
21
  color: #f4f4f5;
@@ -45,7 +45,7 @@
45
45
  }
46
46
  }
47
47
 
48
- :global(.theme-dark) .carb-left { border-color: #27272a; }
48
+ .theme-dark .carb-left { border-color: #27272a; }
49
49
 
50
50
  .carb-sec {
51
51
  padding: 1.5rem;
@@ -54,7 +54,7 @@
54
54
  overflow: hidden;
55
55
  }
56
56
 
57
- :global(.theme-dark) .carb-sec { border-color: #27272a; }
57
+ .theme-dark .carb-sec { border-color: #27272a; }
58
58
  .carb-sec:last-child { border-bottom: none; }
59
59
 
60
60
  .carb-params-deco {
@@ -105,7 +105,7 @@
105
105
  margin-bottom: 1.25rem;
106
106
  }
107
107
 
108
- :global(.theme-dark) .units-toggle { background: #27272a; }
108
+ .theme-dark .units-toggle { background: #27272a; }
109
109
 
110
110
  .unit-btn {
111
111
  padding: 0.4rem 1.25rem;
@@ -119,9 +119,9 @@
119
119
  background: transparent;
120
120
  }
121
121
 
122
- :global(.theme-dark) .unit-btn { color: #a1a1aa; }
122
+ .theme-dark .unit-btn { color: #a1a1aa; }
123
123
  .unit-btn:hover { color: #18181b; }
124
- :global(.theme-dark) .unit-btn:hover { color: #e4e4e7; }
124
+ .theme-dark .unit-btn:hover { color: #e4e4e7; }
125
125
 
126
126
  .unit-btn-active {
127
127
  background: #fff;
@@ -129,7 +129,7 @@
129
129
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
130
130
  }
131
131
 
132
- :global(.theme-dark) .unit-btn-active {
132
+ .theme-dark .unit-btn-active {
133
133
  background: #3f3f46;
134
134
  color: #fff;
135
135
  }
@@ -159,7 +159,7 @@
159
159
  letter-spacing: 0.05em;
160
160
  }
161
161
 
162
- :global(.theme-dark) .input-label { color: #a1a1aa; }
162
+ .theme-dark .input-label { color: #a1a1aa; }
163
163
 
164
164
  .input-badge {
165
165
  padding: 0.125rem 0.5rem;
@@ -172,7 +172,7 @@
172
172
  color: #b45309;
173
173
  }
174
174
 
175
- :global(.theme-dark) .input-badge-amber {
175
+ .theme-dark .input-badge-amber {
176
176
  background: rgba(245,158,11,0.2);
177
177
  color: #fbbf24;
178
178
  }
@@ -182,7 +182,7 @@
182
182
  color: #1d4ed8;
183
183
  }
184
184
 
185
- :global(.theme-dark) .input-badge-blue {
185
+ .theme-dark .input-badge-blue {
186
186
  background: rgba(59,130,246,0.2);
187
187
  color: #60a5fa;
188
188
  }
@@ -200,7 +200,7 @@
200
200
  box-sizing: border-box;
201
201
  }
202
202
 
203
- :global(.theme-dark) .carb-input {
203
+ .theme-dark .carb-input {
204
204
  background: rgba(0,0,0,0.2);
205
205
  border-color: #3f3f46;
206
206
  color: #f4f4f5;
@@ -213,7 +213,7 @@
213
213
  border-top: 1px dashed #e4e4e7;
214
214
  }
215
215
 
216
- :global(.theme-dark) .co2-section { border-color: #3f3f46; }
216
+ .theme-dark .co2-section { border-color: #3f3f46; }
217
217
 
218
218
  .co2-header {
219
219
  display: flex;
@@ -230,7 +230,7 @@
230
230
  letter-spacing: 0.05em;
231
231
  }
232
232
 
233
- :global(.theme-dark) .co2-label { color: #a1a1aa; }
233
+ .theme-dark .co2-label { color: #a1a1aa; }
234
234
  .co2-value-wrap { text-align: right; }
235
235
 
236
236
  .co2-value {
@@ -258,7 +258,7 @@
258
258
  accent-color: #f59e0b;
259
259
  }
260
260
 
261
- :global(.theme-dark) .co2-slider { background: #3f3f46; }
261
+ .theme-dark .co2-slider { background: #3f3f46; }
262
262
 
263
263
  .preset-row {
264
264
  display: flex;
@@ -324,14 +324,14 @@
324
324
  border: 1px solid #f4f4f5;
325
325
  }
326
326
 
327
- :global(.theme-dark) .result-row { border-color: #27272a; }
327
+ .theme-dark .result-row { border-color: #27272a; }
328
328
 
329
329
  .result-row-primary {
330
330
  background: #fafafa;
331
331
  border-color: #e4e4e7;
332
332
  }
333
333
 
334
- :global(.theme-dark) .result-row-primary {
334
+ .theme-dark .result-row-primary {
335
335
  background: rgba(0,0,0,0.2);
336
336
  border-color: #3f3f46;
337
337
  }
@@ -343,7 +343,7 @@
343
343
  color: #71717a;
344
344
  }
345
345
 
346
- :global(.theme-dark) .result-name-muted { color: #a1a1aa; }
346
+ .theme-dark .result-name-muted { color: #a1a1aa; }
347
347
  .result-value {
348
348
  font-size: 1.125rem;
349
349
  font-weight: 700;
@@ -355,7 +355,7 @@
355
355
  color: #4f46e5;
356
356
  }
357
357
 
358
- :global(.theme-dark) .result-value-primary { color: #818cf8; }
358
+ .theme-dark .result-value-primary { color: #818cf8; }
359
359
 
360
360
  .carb-right {
361
361
  display: flex;
@@ -370,7 +370,7 @@
370
370
  .carb-right { width: 50%; }
371
371
  }
372
372
 
373
- :global(.theme-dark) .carb-right { background: rgba(0,0,0,0.15); }
373
+ .theme-dark .carb-right { background: rgba(0,0,0,0.15); }
374
374
 
375
375
  .safety-box {
376
376
  width: 100%;
@@ -5,7 +5,7 @@
5
5
  color: #1e293b;
6
6
  }
7
7
 
8
- :global(.theme-dark) .balancer-app {
8
+ .theme-dark .balancer-app {
9
9
  color: #f1f5f9;
10
10
  }
11
11
 
@@ -17,7 +17,7 @@
17
17
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
18
18
  }
19
19
 
20
- :global(.theme-dark) .balancer-card {
20
+ .theme-dark .balancer-card {
21
21
  background: #0f172a;
22
22
  border-color: #1e293b;
23
23
  }
@@ -38,7 +38,7 @@
38
38
  }
39
39
  }
40
40
 
41
- :global(.theme-dark) .balancer-header {
41
+ .theme-dark .balancer-header {
42
42
  border-color: #1e293b;
43
43
  }
44
44
 
@@ -65,7 +65,7 @@
65
65
  border-radius: 9999px;
66
66
  }
67
67
 
68
- :global(.theme-dark) .balancer-version {
68
+ .theme-dark .balancer-version {
69
69
  background: #1e1b4b;
70
70
  color: #a5b4fc;
71
71
  }
@@ -111,7 +111,7 @@
111
111
  transition: background 0.2s;
112
112
  }
113
113
 
114
- :global(.theme-dark) .btn-secondary {
114
+ .theme-dark .btn-secondary {
115
115
  background: #1e293b;
116
116
  color: #94a3b8;
117
117
  }
@@ -121,7 +121,7 @@
121
121
  color: #4f46e5;
122
122
  }
123
123
 
124
- :global(.theme-dark) .btn-secondary:hover {
124
+ .theme-dark .btn-secondary:hover {
125
125
  background: rgba(99,102,241,0.2);
126
126
  }
127
127
 
@@ -144,7 +144,7 @@
144
144
  background: #fef2f2;
145
145
  }
146
146
 
147
- :global(.theme-dark) .btn-danger:hover {
147
+ .theme-dark .btn-danger:hover {
148
148
  background: rgba(239,68,68,0.1);
149
149
  }
150
150
 
@@ -188,7 +188,7 @@
188
188
  }
189
189
  }
190
190
 
191
- :global(.theme-dark) .recipe-column {
191
+ .theme-dark .recipe-column {
192
192
  border-color: #1e293b;
193
193
  }
194
194
 
@@ -210,7 +210,7 @@
210
210
  background: rgba(248,250,252,0.5);
211
211
  }
212
212
 
213
- :global(.theme-dark) .empty-state {
213
+ .theme-dark .empty-state {
214
214
  border-color: #334155;
215
215
  background: rgba(30,41,59,0.5);
216
216
  }
@@ -228,7 +228,7 @@
228
228
  margin-bottom: 1rem;
229
229
  }
230
230
 
231
- :global(.theme-dark) .empty-icon-wrap {
231
+ .theme-dark .empty-icon-wrap {
232
232
  background: rgba(99,102,241,0.2);
233
233
  }
234
234
 
@@ -244,7 +244,7 @@
244
244
  margin: 0 0 0.5rem;
245
245
  }
246
246
 
247
- :global(.theme-dark) .empty-title {
247
+ .theme-dark .empty-title {
248
248
  color: #e2e8f0;
249
249
  }
250
250
 
@@ -256,7 +256,7 @@
256
256
  text-align: center;
257
257
  }
258
258
 
259
- :global(.theme-dark) .empty-desc {
259
+ .theme-dark .empty-desc {
260
260
  color: #94a3b8;
261
261
  }
262
262
 
@@ -281,7 +281,7 @@
281
281
  transition: all 0.2s;
282
282
  }
283
283
 
284
- :global(.theme-dark) .btn-add-more {
284
+ .theme-dark .btn-add-more {
285
285
  border-color: #334155;
286
286
  }
287
287
 
@@ -302,7 +302,7 @@
302
302
  background: #f8fafc;
303
303
  }
304
304
 
305
- :global(.theme-dark) .dashboard-column {
305
+ .theme-dark .dashboard-column {
306
306
  background: rgba(0,0,0,0.15);
307
307
  }
308
308
 
@@ -313,7 +313,7 @@
313
313
  overflow: hidden;
314
314
  }
315
315
 
316
- :global(.theme-dark) .flavor-card {
316
+ .theme-dark .flavor-card {
317
317
  border-color: #1e293b;
318
318
  }
319
319
 
@@ -348,7 +348,7 @@
348
348
  color: #64748b;
349
349
  }
350
350
 
351
- :global(.theme-dark) .abv-badge {
351
+ .theme-dark .abv-badge {
352
352
  background: #1e293b;
353
353
  }
354
354
 
@@ -370,7 +370,7 @@
370
370
  stroke: #e2e8f0;
371
371
  }
372
372
 
373
- :global(.theme-dark) .radar-bg-poly {
373
+ .theme-dark .radar-bg-poly {
374
374
  stroke: #334155;
375
375
  }
376
376
 
@@ -396,7 +396,7 @@
396
396
  padding: 0 2px;
397
397
  }
398
398
 
399
- :global(.theme-dark) .radar-label {
399
+ .theme-dark .radar-label {
400
400
  background: transparent;
401
401
  }
402
402
 
@@ -438,7 +438,7 @@
438
438
  gap: 0.75rem;
439
439
  }
440
440
 
441
- :global(.theme-dark) .stats-grid {
441
+ .theme-dark .stats-grid {
442
442
  border-color: #1e293b;
443
443
  }
444
444
 
@@ -449,7 +449,7 @@
449
449
  text-align: center;
450
450
  }
451
451
 
452
- :global(.theme-dark) .stat-card {
452
+ .theme-dark .stat-card {
453
453
  border-color: #1e293b;
454
454
  }
455
455
 
@@ -467,7 +467,7 @@
467
467
  color: #334155;
468
468
  }
469
469
 
470
- :global(.theme-dark) .stat-card-value {
470
+ .theme-dark .stat-card-value {
471
471
  color: #e2e8f0;
472
472
  }
473
473
 
@@ -498,7 +498,7 @@
498
498
  margin-top: 0.5rem;
499
499
  }
500
500
 
501
- :global(.theme-dark) .color-swatch {
501
+ .theme-dark .color-swatch {
502
502
  border-color: #334155;
503
503
  }
504
504
 
@@ -514,7 +514,7 @@
514
514
  border-bottom: 1px solid #e2e8f0;
515
515
  }
516
516
 
517
- :global(.theme-dark) .balance-card {
517
+ .theme-dark .balance-card {
518
518
  border-color: #1e293b;
519
519
  }
520
520
 
@@ -548,7 +548,7 @@
548
548
  margin: 0 0.5rem 2rem;
549
549
  }
550
550
 
551
- :global(.theme-dark) .balance-track {
551
+ .theme-dark .balance-track {
552
552
  background: #1e293b;
553
553
  }
554
554
 
@@ -595,7 +595,7 @@
595
595
  z-index: 1;
596
596
  }
597
597
 
598
- :global(.theme-dark) .balance-needle {
598
+ .theme-dark .balance-needle {
599
599
  background: #334155;
600
600
  border-color: #fff;
601
601
  }
@@ -630,7 +630,7 @@
630
630
  border-top: 1px solid #e0e7ff;
631
631
  }
632
632
 
633
- :global(.theme-dark) .fix-box {
633
+ .theme-dark .fix-box {
634
634
  background: rgba(99,102,241,0.08);
635
635
  border-color: rgba(99,102,241,0.2);
636
636
  }
@@ -648,7 +648,7 @@
648
648
  font-size: 1.25rem;
649
649
  }
650
650
 
651
- :global(.theme-dark) .fix-icon-wrap {
651
+ .theme-dark .fix-icon-wrap {
652
652
  background: rgba(99,102,241,0.2);
653
653
  color: #818cf8;
654
654
  }
@@ -665,7 +665,7 @@
665
665
  font-size: 0.875rem;
666
666
  }
667
667
 
668
- :global(.theme-dark) .fix-title {
668
+ .theme-dark .fix-title {
669
669
  color: #c7d2fe;
670
670
  }
671
671
 
@@ -676,7 +676,7 @@
676
676
  margin: 0;
677
677
  }
678
678
 
679
- :global(.theme-dark) .fix-text {
679
+ .theme-dark .fix-text {
680
680
  color: #a5b4fc;
681
681
  }
682
682
 
@@ -714,7 +714,7 @@
714
714
  flex-direction: column;
715
715
  }
716
716
 
717
- :global(.theme-dark) .modal-body {
717
+ .theme-dark .modal-body {
718
718
  background: #0f172a;
719
719
  border-color: #1e293b;
720
720
  }
@@ -729,7 +729,7 @@
729
729
  z-index: 1;
730
730
  }
731
731
 
732
- :global(.theme-dark) .modal-header {
732
+ .theme-dark .modal-header {
733
733
  background: rgba(15,23,42,0.8);
734
734
  border-color: #1e293b;
735
735
  }
@@ -780,7 +780,7 @@
780
780
  background: #f1f5f9;
781
781
  }
782
782
 
783
- :global(.theme-dark) .modal-close-btn:hover {
783
+ .theme-dark .modal-close-btn:hover {
784
784
  background: #1e293b;
785
785
  }
786
786
 
@@ -809,7 +809,7 @@
809
809
  box-sizing: border-box;
810
810
  }
811
811
 
812
- :global(.theme-dark) .modal-search-input {
812
+ .theme-dark .modal-search-input {
813
813
  background: #1e293b;
814
814
  border-color: #334155;
815
815
  color: #f1f5f9;
@@ -829,7 +829,7 @@
829
829
  background: #f8fafc;
830
830
  }
831
831
 
832
- :global(.theme-dark) .modal-scroll-bg {
832
+ .theme-dark .modal-scroll-bg {
833
833
  background: rgba(0,0,0,0.1);
834
834
  }
835
835
 
@@ -857,7 +857,7 @@
857
857
  transition: all 0.15s;
858
858
  }
859
859
 
860
- :global(.theme-dark) .ing-select-btn {
860
+ .theme-dark .ing-select-btn {
861
861
  background: rgba(30,41,59,0.5);
862
862
  }
863
863
 
@@ -866,7 +866,7 @@
866
866
  border-color: #c7d2fe;
867
867
  }
868
868
 
869
- :global(.theme-dark) .ing-select-btn:hover {
869
+ .theme-dark .ing-select-btn:hover {
870
870
  background: rgba(99,102,241,0.1);
871
871
  border-color: rgba(99,102,241,0.4);
872
872
  }
@@ -914,7 +914,7 @@
914
914
  font-size: 0.875rem;
915
915
  }
916
916
 
917
- :global(.theme-dark) .ing-name {
917
+ .theme-dark .ing-name {
918
918
  color: #e2e8f0;
919
919
  }
920
920
 
@@ -922,7 +922,7 @@
922
922
  color: #4f46e5;
923
923
  }
924
924
 
925
- :global(.theme-dark) .ing-select-btn:hover .ing-name {
925
+ .theme-dark .ing-select-btn:hover .ing-name {
926
926
  color: #818cf8;
927
927
  }
928
928
 
@@ -967,7 +967,7 @@
967
967
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
968
968
  }
969
969
 
970
- :global(.theme-dark) .preset-load-btn {
970
+ .theme-dark .preset-load-btn {
971
971
  background: #1e293b;
972
972
  border-color: #334155;
973
973
  }
@@ -996,7 +996,7 @@
996
996
  font-size: 0.875rem;
997
997
  }
998
998
 
999
- :global(.theme-dark) .preset-name {
999
+ .theme-dark .preset-name {
1000
1000
  color: #fff;
1001
1001
  }
1002
1002
 
@@ -1036,7 +1036,7 @@
1036
1036
  text-align: center;
1037
1037
  }
1038
1038
 
1039
- :global(.theme-dark) .confirm-body {
1039
+ .theme-dark .confirm-body {
1040
1040
  background: #0f172a;
1041
1041
  border-color: #1e293b;
1042
1042
  }
@@ -1054,7 +1054,7 @@
1054
1054
  margin-bottom: 0.5rem;
1055
1055
  }
1056
1056
 
1057
- :global(.theme-dark) .confirm-icon-wrap {
1057
+ .theme-dark .confirm-icon-wrap {
1058
1058
  background: rgba(239,68,68,0.2);
1059
1059
  }
1060
1060
 
@@ -1075,7 +1075,7 @@
1075
1075
  margin: 0;
1076
1076
  }
1077
1077
 
1078
- :global(.theme-dark) .confirm-text {
1078
+ .theme-dark .confirm-text {
1079
1079
  color: #94a3b8;
1080
1080
  }
1081
1081
 
@@ -1091,7 +1091,7 @@
1091
1091
  padding: 0.75rem;
1092
1092
  }
1093
1093
 
1094
- :global(.recipe-row) {
1094
+ .recipe-row {
1095
1095
  background: #fff;
1096
1096
  border-radius: 1rem;
1097
1097
  padding: 1rem;
@@ -1099,34 +1099,34 @@
1099
1099
  border: 1px solid #f1f5f9;
1100
1100
  }
1101
1101
 
1102
- :global(.theme-dark .recipe-row) {
1102
+ .theme-dark .recipe-row {
1103
1103
  background: #0f172a;
1104
1104
  border-color: #1e293b;
1105
1105
  }
1106
1106
 
1107
- :global(.recipe-row-top) {
1107
+ .recipe-row-top {
1108
1108
  display: flex;
1109
1109
  align-items: center;
1110
1110
  justify-content: space-between;
1111
1111
  margin-bottom: 0.75rem;
1112
1112
  }
1113
1113
 
1114
- :global(.recipe-row-info) {
1114
+ .recipe-row-info {
1115
1115
  display: flex;
1116
1116
  align-items: center;
1117
1117
  gap: 0.75rem;
1118
1118
  }
1119
1119
 
1120
- :global(.recipe-row-name) {
1120
+ .recipe-row-name {
1121
1121
  font-weight: 700;
1122
1122
  color: #334155;
1123
1123
  }
1124
1124
 
1125
- :global(.theme-dark .recipe-row-name) {
1125
+ .theme-dark .recipe-row-name {
1126
1126
  color: #e2e8f0;
1127
1127
  }
1128
1128
 
1129
- :global(.recipe-row-type) {
1129
+ .recipe-row-type {
1130
1130
  font-size: 0.625rem;
1131
1131
  background: #f1f5f9;
1132
1132
  padding: 0.125rem 0.5rem;
@@ -1136,26 +1136,26 @@
1136
1136
  text-transform: uppercase;
1137
1137
  }
1138
1138
 
1139
- :global(.theme-dark .recipe-row-type) {
1139
+ .theme-dark .recipe-row-type {
1140
1140
  background: #1e293b;
1141
1141
  }
1142
1142
 
1143
- :global(.recipe-row-del) {
1143
+ .recipe-row-del {
1144
1144
  opacity: 0;
1145
1145
  transition: opacity 0.2s;
1146
1146
  }
1147
1147
 
1148
- :global(.recipe-row:hover .recipe-row-del) {
1148
+ .recipe-row:hover .recipe-row-del {
1149
1149
  opacity: 1;
1150
1150
  }
1151
1151
 
1152
- :global(.recipe-row-controls) {
1152
+ .recipe-row-controls {
1153
1153
  display: flex;
1154
1154
  align-items: center;
1155
1155
  gap: 1rem;
1156
1156
  }
1157
1157
 
1158
- :global(.recipe-range) {
1158
+ .recipe-range {
1159
1159
  flex: 1;
1160
1160
  height: 0.5rem;
1161
1161
  border-radius: 0.5rem;
@@ -1165,16 +1165,16 @@
1165
1165
  background: #e2e8f0;
1166
1166
  }
1167
1167
 
1168
- :global(.theme-dark .recipe-range) {
1168
+ .theme-dark .recipe-range {
1169
1169
  background: #334155;
1170
1170
  }
1171
1171
 
1172
- :global(.recipe-number-wrap) {
1172
+ .recipe-number-wrap {
1173
1173
  position: relative;
1174
1174
  width: 5rem;
1175
1175
  }
1176
1176
 
1177
- :global(.recipe-number) {
1177
+ .recipe-number {
1178
1178
  width: 100%;
1179
1179
  background: #f8fafc;
1180
1180
  border: 1px solid #e2e8f0;
@@ -1187,7 +1187,7 @@
1187
1187
  box-sizing: border-box;
1188
1188
  }
1189
1189
 
1190
- :global(.theme-dark .recipe-number) {
1190
+ .theme-dark .recipe-number {
1191
1191
  background: #1e293b;
1192
1192
  border-color: #334155;
1193
1193
  color: #e2e8f0;
@@ -17,7 +17,7 @@
17
17
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
18
18
  }
19
19
 
20
- :global(.theme-dark) .party-card {
20
+ .theme-dark .party-card {
21
21
  background: rgba(15,23,42,0.9);
22
22
  border-color: rgba(255,255,255,0.1);
23
23
  }
@@ -71,7 +71,7 @@
71
71
  }
72
72
  }
73
73
 
74
- :global(.theme-dark) .party-inputs {
74
+ .theme-dark .party-inputs {
75
75
  background: rgba(255,255,255,0.03);
76
76
  border-color: #1e293b;
77
77
  }
@@ -108,7 +108,7 @@
108
108
  color: #1e293b;
109
109
  }
110
110
 
111
- :global(.theme-dark) .calc-title {
111
+ .theme-dark .calc-title {
112
112
  color: #f1f5f9;
113
113
  }
114
114
 
@@ -147,7 +147,7 @@
147
147
  letter-spacing: -0.05em;
148
148
  }
149
149
 
150
- :global(.theme-dark) .slider-val {
150
+ .theme-dark .slider-val {
151
151
  color: #f1f5f9;
152
152
  }
153
153
 
@@ -177,7 +177,7 @@
177
177
  cursor: pointer;
178
178
  }
179
179
 
180
- :global(.theme-dark) .custom-slider-wrap {
180
+ .theme-dark .custom-slider-wrap {
181
181
  background: #1e293b;
182
182
  border-color: #334155;
183
183
  }
@@ -254,7 +254,7 @@
254
254
  transition: all 0.2s;
255
255
  }
256
256
 
257
- :global(.theme-dark) .vibe-btn {
257
+ .theme-dark .vibe-btn {
258
258
  border-color: #334155;
259
259
  background: #0f172a;
260
260
  }
@@ -355,7 +355,7 @@
355
355
  border-top: 1px solid #e2e8f0;
356
356
  }
357
357
 
358
- :global(.theme-dark) .temp-section {
358
+ .theme-dark .temp-section {
359
359
  border-color: #334155;
360
360
  }
361
361
 
@@ -378,7 +378,7 @@
378
378
  position: relative;
379
379
  }
380
380
 
381
- :global(.theme-dark) .party-results {
381
+ .theme-dark .party-results {
382
382
  background: rgba(0,0,0,0.2);
383
383
  }
384
384
 
@@ -390,7 +390,7 @@
390
390
  backdrop-filter: blur(4px);
391
391
  }
392
392
 
393
- :global(.theme-dark) .stats-header {
393
+ .theme-dark .stats-header {
394
394
  border-color: #1e293b;
395
395
  background: rgba(255,255,255,0.03);
396
396
  }
@@ -405,7 +405,7 @@
405
405
  border-right: 1px solid #e2e8f0;
406
406
  }
407
407
 
408
- :global(.theme-dark) .stat-block-left {
408
+ .theme-dark .stat-block-left {
409
409
  border-color: #1e293b;
410
410
  }
411
411
 
@@ -456,7 +456,7 @@
456
456
  letter-spacing: -0.05em;
457
457
  }
458
458
 
459
- :global(.theme-dark) .stat-number {
459
+ .theme-dark .stat-number {
460
460
  color: #f1f5f9;
461
461
  }
462
462
 
@@ -492,7 +492,7 @@
492
492
  background: linear-gradient(to top, rgba(203,213,225,0.5) 0%, rgba(248,250,252,0) 100%);
493
493
  }
494
494
 
495
- :global(.theme-dark) .visual-stage-wrap {
495
+ .theme-dark .visual-stage-wrap {
496
496
  background: linear-gradient(to top, rgba(15,23,42,0.5) 0%, transparent 100%);
497
497
  }
498
498
 
@@ -535,7 +535,7 @@
535
535
  background: #cbd5e1;
536
536
  }
537
537
 
538
- :global(.theme-dark) .stage-baseline {
538
+ .theme-dark .stage-baseline {
539
539
  background: #334155;
540
540
  }
541
541
 
@@ -555,7 +555,7 @@
555
555
  animation: drop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
556
556
  }
557
557
 
558
- :global(.visual-container) {
558
+ .visual-container {
559
559
  display: flex;
560
560
  align-items: flex-end;
561
561
  justify-content: center;
@@ -565,12 +565,12 @@
565
565
  }
566
566
 
567
567
  @media (min-width: 1024px) {
568
- :global(.visual-container) {
568
+ .visual-container {
569
569
  gap: 4rem;
570
570
  }
571
571
  }
572
572
 
573
- :global(.keg-stack) {
573
+ .keg-stack {
574
574
  display: flex;
575
575
  flex-direction: column-reverse;
576
576
  align-items: center;
@@ -580,18 +580,18 @@
580
580
  min-width: 80px;
581
581
  }
582
582
 
583
- :global(.keg-item) {
583
+ .keg-item {
584
584
  position: relative;
585
585
  transition: transform 0.3s;
586
586
  transform-origin: bottom;
587
587
  cursor: default;
588
588
  }
589
589
 
590
- :global(.keg-item:hover) {
590
+ .keg-item:hover {
591
591
  transform: scale(1.05);
592
592
  }
593
593
 
594
- :global(.keg-plus) {
594
+ .keg-plus {
595
595
  text-align: center;
596
596
  font-weight: 900;
597
597
  font-size: 1.25rem;
@@ -621,7 +621,7 @@
621
621
  }
622
622
  }
623
623
 
624
- :global(.ice-pile) {
624
+ .ice-pile {
625
625
  display: flex;
626
626
  flex-wrap: wrap;
627
627
  align-content: flex-end;
@@ -632,17 +632,17 @@
632
632
  position: relative;
633
633
  }
634
634
 
635
- :global(.ice-bag) {
635
+ .ice-bag {
636
636
  transition: transform 0.3s;
637
637
  cursor: pointer;
638
638
  }
639
639
 
640
- :global(.ice-bag:hover) {
640
+ .ice-bag:hover {
641
641
  transform: scale(1.1);
642
642
  z-index: 50;
643
643
  }
644
644
 
645
- :global(.bags-plus) {
645
+ .bags-plus {
646
646
  position: absolute;
647
647
  top: -3rem;
648
648
  left: 50%;