@jjlmoya/utils-cooking 1.19.0 → 1.21.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.
Files changed (26) hide show
  1. package/package.json +5 -3
  2. package/scripts/postinstall.mjs +27 -0
  3. package/src/tool/american-kitchen-converter/component.astro +0 -498
  4. package/src/tool/american-kitchen-converter/us-cooking-conversion-calculator-cups-to-grams-fahrenheit.css +496 -0
  5. package/src/tool/banana-ripeness/banana-ripeness.css +587 -0
  6. package/src/tool/banana-ripeness/component.astro +0 -589
  7. package/src/tool/brine/component.astro +0 -536
  8. package/src/tool/brine/equilibrium-brining-calculator-meat-fermentation-ratios.css +534 -0
  9. package/src/tool/cookware-guide/component.astro +0 -24
  10. package/src/tool/cookware-guide/cookware-selector.css +22 -0
  11. package/src/tool/egg-timer/component.astro +1 -505
  12. package/src/tool/egg-timer/perfect-boiled-egg-timer-altitude-calculator.css +503 -0
  13. package/src/tool/ingredient-rescaler/component.astro +0 -22
  14. package/src/tool/ingredient-rescaler/recipe-ingredient-scaler-converter-servings.css +20 -0
  15. package/src/tool/kitchen-timer/component.astro +0 -340
  16. package/src/tool/kitchen-timer/kitchen-timer.css +338 -0
  17. package/src/tool/meringue-peak/component.astro +0 -300
  18. package/src/tool/meringue-peak/meringue-sugar-ratio-calculator-stiff-peaks.css +298 -0
  19. package/src/tool/mold-scaler/cake-pan-size-converter-calculator.css +364 -0
  20. package/src/tool/mold-scaler/component.astro +0 -366
  21. package/src/tool/pizza/component.astro +0 -570
  22. package/src/tool/pizza/neapolitan-pizza-dough-calculator-authentic-recipe.css +569 -0
  23. package/src/tool/roux-guide/component.astro +0 -23
  24. package/src/tool/roux-guide/roux-ratio-calculator-thickening-sauce-guide.css +21 -0
  25. package/src/tool/sourdough-calculator/component.astro +0 -371
  26. package/src/tool/sourdough-calculator/sourdough-starter-feeding-calculator-ratio-proportions.css +369 -0
@@ -0,0 +1,364 @@
1
+ :root {
2
+ --ms-primary: hsl(262deg, 83%, 58%);
3
+ --ms-primary-light: hsl(262deg, 83%, 95%);
4
+ --ms-primary-dark: hsl(262deg, 83%, 45%);
5
+ --ms-bg-card: hsl(0deg, 0%, 100%);
6
+ --ms-bg-app: hsl(210deg, 20%, 98%);
7
+ --ms-border: hsl(210deg, 20%, 90%);
8
+ --ms-text-main: hsl(210deg, 30%, 20%);
9
+ --ms-text-muted: hsl(210deg, 15%, 50%);
10
+ --ms-shadow-lg: 0 10px 15px -3px rgb(0, 0, 0, 0.1);
11
+ --ms-radius: 1rem;
12
+ --ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
13
+ }
14
+
15
+ .theme-dark {
16
+ --ms-bg-card: hsl(220deg, 25%, 12%);
17
+ --ms-bg-app: hsl(220deg, 30%, 7%);
18
+ --ms-border: hsl(220deg, 20%, 20%);
19
+ --ms-text-main: hsl(210deg, 20%, 95%);
20
+ --ms-text-muted: hsl(210deg, 15%, 70%);
21
+ --ms-primary-light: hsl(262deg, 83%, 15%);
22
+ }
23
+
24
+ .mold-scaler-container {
25
+ max-width: 1000px;
26
+ margin: 0 auto;
27
+ padding: 1rem;
28
+ }
29
+
30
+ .ms-card {
31
+ background: var(--ms-bg-card);
32
+ border: 1px solid var(--ms-border);
33
+ border-radius: var(--ms-radius);
34
+ box-shadow: var(--ms-shadow-lg);
35
+ overflow: hidden;
36
+ display: flex;
37
+ flex-direction: column;
38
+ }
39
+
40
+ @media (min-width: 1024px) {
41
+ .ms-card {
42
+ flex-direction: row;
43
+ min-height: 700px;
44
+ }
45
+ }
46
+
47
+ .ms-sidebar {
48
+ flex: 1;
49
+ padding: 2rem;
50
+ border-bottom: 1px solid var(--ms-border);
51
+ background: linear-gradient(to bottom, var(--ms-bg-card), var(--ms-primary-light));
52
+ }
53
+
54
+ @media (min-width: 1024px) {
55
+ .ms-sidebar {
56
+ border-bottom: none;
57
+ border-right: 1px solid var(--ms-border);
58
+ max-width: 450px;
59
+ }
60
+ }
61
+
62
+ .ms-main {
63
+ flex: 1.5;
64
+ padding: 2rem;
65
+ display: flex;
66
+ flex-direction: column;
67
+ gap: 2rem;
68
+ }
69
+
70
+ .ms-section {
71
+ margin-bottom: 2rem;
72
+ }
73
+
74
+ .ms-section-title {
75
+ display: flex;
76
+ align-items: center;
77
+ gap: 0.75rem;
78
+ font-size: 1.25rem;
79
+ font-weight: 700;
80
+ color: var(--ms-text-main);
81
+ margin-bottom: 1.5rem;
82
+ }
83
+
84
+ .ms-section-badge {
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ width: 1.75rem;
89
+ height: 1.75rem;
90
+ background: var(--ms-primary);
91
+ color: var(--ms-bg-card);
92
+ border-radius: 50%;
93
+ font-size: 0.875rem;
94
+ }
95
+
96
+ .ms-shape-selector {
97
+ display: grid;
98
+ grid-template-columns: repeat(3, 1fr);
99
+ gap: 0.75rem;
100
+ margin-bottom: 1.25rem;
101
+ }
102
+
103
+ .ms-shape-btn {
104
+ display: flex;
105
+ flex-direction: column;
106
+ align-items: center;
107
+ padding: 0.75rem;
108
+ border-radius: 0.75rem;
109
+ border: 1px solid var(--ms-border);
110
+ background: var(--ms-bg-card);
111
+ color: var(--ms-text-muted);
112
+ cursor: pointer;
113
+ transition: var(--ms-transition);
114
+ font-size: 0.875rem;
115
+ font-weight: 600;
116
+ }
117
+
118
+ .ms-shape-btn:hover {
119
+ border-color: var(--ms-primary);
120
+ color: var(--ms-primary);
121
+ }
122
+
123
+ .ms-shape-btn.active {
124
+ background: var(--ms-primary);
125
+ color: var(--ms-bg-card);
126
+ border-color: var(--ms-primary);
127
+ box-shadow: 0 4px 12px hsla(262deg, 83%, 58%, 0.3);
128
+ }
129
+
130
+ .ms-shape-icon {
131
+ width: 2rem;
132
+ height: 2rem;
133
+ margin-bottom: 0.5rem;
134
+ border: 2px solid currentcolor;
135
+ transition: var(--ms-transition);
136
+ }
137
+
138
+ .ms-shape-btn[data-shape="round"] .ms-shape-icon {
139
+ border-radius: 50%;
140
+ }
141
+
142
+ .ms-shape-btn[data-shape="square"] .ms-shape-icon {
143
+ border-radius: 4px;
144
+ }
145
+
146
+ .ms-shape-btn[data-shape="rectangular"] .ms-shape-icon {
147
+ border-radius: 2px;
148
+ width: 2.5rem;
149
+ }
150
+
151
+ .ms-input-group {
152
+ display: flex;
153
+ flex-direction: column;
154
+ gap: 0.5rem;
155
+ }
156
+
157
+ .ms-label {
158
+ font-size: 0.75rem;
159
+ font-weight: 700;
160
+ color: var(--ms-text-muted);
161
+ text-transform: uppercase;
162
+ letter-spacing: 0.05em;
163
+ }
164
+
165
+ .ms-input {
166
+ width: 100%;
167
+ padding: 0.75rem 1rem;
168
+ border-radius: 0.5rem;
169
+ border: 1px solid var(--ms-border);
170
+ background: var(--ms-bg-card);
171
+ color: var(--ms-text-main);
172
+ font-weight: 600;
173
+ transition: var(--ms-transition);
174
+ }
175
+
176
+ .ms-input:focus {
177
+ outline: none;
178
+ border-color: var(--ms-primary);
179
+ box-shadow: 0 0 0 3px hsla(262deg, 83%, 58%, 0.1);
180
+ }
181
+
182
+ .ms-hero-result {
183
+ text-align: center;
184
+ padding: 2.5rem;
185
+ background: linear-gradient(135deg, var(--ms-primary), var(--ms-primary-dark));
186
+ color: hsl(0deg, 0%, 100%);
187
+ border-radius: var(--ms-radius);
188
+ box-shadow: var(--ms-shadow-md);
189
+ position: relative;
190
+ overflow: hidden;
191
+ }
192
+
193
+ .ms-result-label {
194
+ font-size: 0.875rem;
195
+ font-weight: 600;
196
+ text-transform: uppercase;
197
+ letter-spacing: 0.1em;
198
+ opacity: 0.8;
199
+ margin-bottom: 0.5rem;
200
+ }
201
+
202
+ .ms-result-value {
203
+ font-size: 4rem;
204
+ font-weight: 800;
205
+ margin-bottom: 0.5rem;
206
+ line-height: 1;
207
+ }
208
+
209
+ .ms-result-text {
210
+ font-size: 1rem;
211
+ opacity: 0.9;
212
+ max-width: 300px;
213
+ margin: 0 auto;
214
+ }
215
+
216
+ .ms-viz-container {
217
+ background: var(--ms-bg-app);
218
+ border: 1px solid var(--ms-border);
219
+ border-radius: var(--ms-radius);
220
+ padding: 1.5rem;
221
+ position: relative;
222
+ aspect-ratio: 4 / 3;
223
+ display: flex;
224
+ flex-direction: column;
225
+ }
226
+
227
+ .ms-viz-svg {
228
+ flex: 1;
229
+ width: 100%;
230
+ height: 100%;
231
+ }
232
+
233
+ .ms-viz-legend {
234
+ display: flex;
235
+ justify-content: center;
236
+ gap: 1.5rem;
237
+ padding-top: 1rem;
238
+ font-size: 0.75rem;
239
+ font-weight: 600;
240
+ }
241
+
242
+ .ms-legend-item {
243
+ display: flex;
244
+ align-items: center;
245
+ gap: 0.5rem;
246
+ }
247
+
248
+ .ms-dot {
249
+ width: 0.75rem;
250
+ height: 0.75rem;
251
+ border-radius: 50%;
252
+ }
253
+
254
+ .ms-dot.original {
255
+ background: var(--ms-primary);
256
+ opacity: 0.5;
257
+ border: 1px dashed var(--ms-primary);
258
+ }
259
+
260
+ .ms-dot.target {
261
+ background: hsl(150deg, 80%, 40%);
262
+ opacity: 0.8;
263
+ border: 1px solid hsl(150deg, 80%, 40%);
264
+ }
265
+
266
+ .ms-ingredients-card {
267
+ border: 1px solid var(--ms-border);
268
+ border-radius: var(--ms-radius);
269
+ padding: 1.5rem;
270
+ }
271
+
272
+ .ms-ingredients-list {
273
+ display: flex;
274
+ flex-direction: column;
275
+ gap: 0.75rem;
276
+ margin-bottom: 1.5rem;
277
+ }
278
+
279
+ .ms-ingredient-row {
280
+ display: grid;
281
+ grid-template-columns: 1fr;
282
+ gap: 0.75rem;
283
+ padding: 1rem;
284
+ background: var(--ms-bg-app);
285
+ border-radius: 0.75rem;
286
+ border: 1px solid var(--ms-border);
287
+ position: relative;
288
+ animation: slide-in 0.3s ease-out;
289
+ }
290
+
291
+ @keyframes slide-in {
292
+ from {
293
+ opacity: 0;
294
+ transform: translateY(10px);
295
+ }
296
+ to {
297
+ opacity: 1;
298
+ transform: translateY(0);
299
+ }
300
+ }
301
+
302
+ @media (min-width: 640px) {
303
+ .ms-ingredient-row {
304
+ grid-template-columns: 2fr 1fr 1fr auto;
305
+ align-items: center;
306
+ }
307
+ }
308
+
309
+ .ms-ingredient-final {
310
+ font-weight: 800;
311
+ color: hsl(150deg, 80%, 40%);
312
+ font-size: 1.125rem;
313
+ padding: 0.5rem;
314
+ text-align: center;
315
+ }
316
+
317
+ .ms-del-btn {
318
+ background: transparent;
319
+ border: none;
320
+ color: var(--ms-text-muted);
321
+ cursor: pointer;
322
+ padding: 0.5rem;
323
+ border-radius: 0.5rem;
324
+ transition: var(--ms-transition);
325
+ }
326
+
327
+ .ms-del-btn:hover {
328
+ background: hsl(0deg, 85%, 60%);
329
+ color: var(--ms-bg-card);
330
+ }
331
+
332
+ .ms-add-btn {
333
+ width: 100%;
334
+ padding: 1rem;
335
+ background: transparent;
336
+ border: 2px dashed var(--ms-primary);
337
+ color: var(--ms-primary);
338
+ border-radius: 0.75rem;
339
+ font-weight: 700;
340
+ cursor: pointer;
341
+ transition: var(--ms-transition);
342
+ display: flex;
343
+ align-items: center;
344
+ justify-content: center;
345
+ gap: 0.5rem;
346
+ }
347
+
348
+ .ms-add-btn:hover {
349
+ background: var(--ms-primary-light);
350
+ border-style: solid;
351
+ }
352
+
353
+ .ms-empty-state {
354
+ text-align: center;
355
+ padding: 2rem;
356
+ color: var(--ms-text-muted);
357
+ font-style: italic;
358
+ }
359
+
360
+ .ms-inputs-grid {
361
+ display: grid;
362
+ grid-template-columns: 1fr 1fr;
363
+ gap: 1rem;
364
+ }
@@ -123,370 +123,4 @@ const { ui } = Astro.props;
123
123
  }
124
124
  </script>
125
125
 
126
- <style>
127
- :root {
128
- --ms-primary: hsl(262deg, 83%, 58%);
129
- --ms-primary-light: hsl(262deg, 83%, 95%);
130
- --ms-primary-dark: hsl(262deg, 83%, 45%);
131
- --ms-bg-card: hsl(0deg, 0%, 100%);
132
- --ms-bg-app: hsl(210deg, 20%, 98%);
133
- --ms-border: hsl(210deg, 20%, 90%);
134
- --ms-text-main: hsl(210deg, 30%, 20%);
135
- --ms-text-muted: hsl(210deg, 15%, 50%);
136
- --ms-shadow-lg: 0 10px 15px -3px rgb(0, 0, 0, 0.1);
137
- --ms-radius: 1rem;
138
- --ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
139
- }
140
-
141
- :global(.theme-dark) {
142
- --ms-bg-card: hsl(220deg, 25%, 12%);
143
- --ms-bg-app: hsl(220deg, 30%, 7%);
144
- --ms-border: hsl(220deg, 20%, 20%);
145
- --ms-text-main: hsl(210deg, 20%, 95%);
146
- --ms-text-muted: hsl(210deg, 15%, 70%);
147
- --ms-primary-light: hsl(262deg, 83%, 15%);
148
- }
149
-
150
- .mold-scaler-container {
151
- max-width: 1000px;
152
- margin: 0 auto;
153
- padding: 1rem;
154
- }
155
-
156
- .ms-card {
157
- background: var(--ms-bg-card);
158
- border: 1px solid var(--ms-border);
159
- border-radius: var(--ms-radius);
160
- box-shadow: var(--ms-shadow-lg);
161
- overflow: hidden;
162
- display: flex;
163
- flex-direction: column;
164
- }
165
-
166
- @media (min-width: 1024px) {
167
- .ms-card {
168
- flex-direction: row;
169
- min-height: 700px;
170
- }
171
- }
172
-
173
- .ms-sidebar {
174
- flex: 1;
175
- padding: 2rem;
176
- border-bottom: 1px solid var(--ms-border);
177
- background: linear-gradient(to bottom, var(--ms-bg-card), var(--ms-primary-light));
178
- }
179
-
180
- @media (min-width: 1024px) {
181
- .ms-sidebar {
182
- border-bottom: none;
183
- border-right: 1px solid var(--ms-border);
184
- max-width: 450px;
185
- }
186
- }
187
-
188
- .ms-main {
189
- flex: 1.5;
190
- padding: 2rem;
191
- display: flex;
192
- flex-direction: column;
193
- gap: 2rem;
194
- }
195
-
196
- .ms-section {
197
- margin-bottom: 2rem;
198
- }
199
-
200
- .ms-section-title {
201
- display: flex;
202
- align-items: center;
203
- gap: 0.75rem;
204
- font-size: 1.25rem;
205
- font-weight: 700;
206
- color: var(--ms-text-main);
207
- margin-bottom: 1.5rem;
208
- }
209
-
210
- .ms-section-badge {
211
- display: flex;
212
- align-items: center;
213
- justify-content: center;
214
- width: 1.75rem;
215
- height: 1.75rem;
216
- background: var(--ms-primary);
217
- color: var(--ms-bg-card);
218
- border-radius: 50%;
219
- font-size: 0.875rem;
220
- }
221
-
222
- .ms-shape-selector {
223
- display: grid;
224
- grid-template-columns: repeat(3, 1fr);
225
- gap: 0.75rem;
226
- margin-bottom: 1.25rem;
227
- }
228
-
229
- .ms-shape-btn {
230
- display: flex;
231
- flex-direction: column;
232
- align-items: center;
233
- padding: 0.75rem;
234
- border-radius: 0.75rem;
235
- border: 1px solid var(--ms-border);
236
- background: var(--ms-bg-card);
237
- color: var(--ms-text-muted);
238
- cursor: pointer;
239
- transition: var(--ms-transition);
240
- font-size: 0.875rem;
241
- font-weight: 600;
242
- }
243
-
244
- .ms-shape-btn:hover {
245
- border-color: var(--ms-primary);
246
- color: var(--ms-primary);
247
- }
248
-
249
- .ms-shape-btn.active {
250
- background: var(--ms-primary);
251
- color: var(--ms-bg-card);
252
- border-color: var(--ms-primary);
253
- box-shadow: 0 4px 12px hsla(262deg, 83%, 58%, 0.3);
254
- }
255
-
256
- .ms-shape-icon {
257
- width: 2rem;
258
- height: 2rem;
259
- margin-bottom: 0.5rem;
260
- border: 2px solid currentcolor;
261
- transition: var(--ms-transition);
262
- }
263
-
264
- .ms-shape-btn[data-shape="round"] .ms-shape-icon {
265
- border-radius: 50%;
266
- }
267
-
268
- .ms-shape-btn[data-shape="square"] .ms-shape-icon {
269
- border-radius: 4px;
270
- }
271
-
272
- .ms-shape-btn[data-shape="rectangular"] .ms-shape-icon {
273
- border-radius: 2px;
274
- width: 2.5rem;
275
- }
276
-
277
- :global(.ms-input-group) {
278
- display: flex;
279
- flex-direction: column;
280
- gap: 0.5rem;
281
- }
282
-
283
- :global(.ms-label) {
284
- font-size: 0.75rem;
285
- font-weight: 700;
286
- color: var(--ms-text-muted);
287
- text-transform: uppercase;
288
- letter-spacing: 0.05em;
289
- }
290
-
291
- :global(.ms-input) {
292
- width: 100%;
293
- padding: 0.75rem 1rem;
294
- border-radius: 0.5rem;
295
- border: 1px solid var(--ms-border);
296
- background: var(--ms-bg-card);
297
- color: var(--ms-text-main);
298
- font-weight: 600;
299
- transition: var(--ms-transition);
300
- }
301
-
302
- :global(.ms-input):focus {
303
- outline: none;
304
- border-color: var(--ms-primary);
305
- box-shadow: 0 0 0 3px hsla(262deg, 83%, 58%, 0.1);
306
- }
307
-
308
- .ms-hero-result {
309
- text-align: center;
310
- padding: 2.5rem;
311
- background: linear-gradient(135deg, var(--ms-primary), var(--ms-primary-dark));
312
- color: hsl(0deg, 0%, 100%);
313
- border-radius: var(--ms-radius);
314
- box-shadow: var(--ms-shadow-md);
315
- position: relative;
316
- overflow: hidden;
317
- }
318
-
319
- .ms-result-label {
320
- font-size: 0.875rem;
321
- font-weight: 600;
322
- text-transform: uppercase;
323
- letter-spacing: 0.1em;
324
- opacity: 0.8;
325
- margin-bottom: 0.5rem;
326
- }
327
-
328
- .ms-result-value {
329
- font-size: 4rem;
330
- font-weight: 800;
331
- margin-bottom: 0.5rem;
332
- line-height: 1;
333
- }
334
-
335
- .ms-result-text {
336
- font-size: 1rem;
337
- opacity: 0.9;
338
- max-width: 300px;
339
- margin: 0 auto;
340
- }
341
-
342
- .ms-viz-container {
343
- background: var(--ms-bg-app);
344
- border: 1px solid var(--ms-border);
345
- border-radius: var(--ms-radius);
346
- padding: 1.5rem;
347
- position: relative;
348
- aspect-ratio: 4 / 3;
349
- display: flex;
350
- flex-direction: column;
351
- }
352
-
353
- .ms-viz-svg {
354
- flex: 1;
355
- width: 100%;
356
- height: 100%;
357
- }
358
-
359
- .ms-viz-legend {
360
- display: flex;
361
- justify-content: center;
362
- gap: 1.5rem;
363
- padding-top: 1rem;
364
- font-size: 0.75rem;
365
- font-weight: 600;
366
- }
367
-
368
- .ms-legend-item {
369
- display: flex;
370
- align-items: center;
371
- gap: 0.5rem;
372
- }
373
-
374
- .ms-dot {
375
- width: 0.75rem;
376
- height: 0.75rem;
377
- border-radius: 50%;
378
- }
379
-
380
- .ms-dot.original {
381
- background: var(--ms-primary);
382
- opacity: 0.5;
383
- border: 1px dashed var(--ms-primary);
384
- }
385
-
386
- .ms-dot.target {
387
- background: hsl(150deg, 80%, 40%);
388
- opacity: 0.8;
389
- border: 1px solid hsl(150deg, 80%, 40%);
390
- }
391
-
392
- .ms-ingredients-card {
393
- border: 1px solid var(--ms-border);
394
- border-radius: var(--ms-radius);
395
- padding: 1.5rem;
396
- }
397
-
398
- .ms-ingredients-list {
399
- display: flex;
400
- flex-direction: column;
401
- gap: 0.75rem;
402
- margin-bottom: 1.5rem;
403
- }
404
-
405
- :global(.ms-ingredient-row) {
406
- display: grid;
407
- grid-template-columns: 1fr;
408
- gap: 0.75rem;
409
- padding: 1rem;
410
- background: var(--ms-bg-app);
411
- border-radius: 0.75rem;
412
- border: 1px solid var(--ms-border);
413
- position: relative;
414
- animation: slide-in 0.3s ease-out;
415
- }
416
-
417
- @keyframes slide-in {
418
- from {
419
- opacity: 0;
420
- transform: translateY(10px);
421
- }
422
- to {
423
- opacity: 1;
424
- transform: translateY(0);
425
- }
426
- }
427
-
428
- @media (min-width: 640px) {
429
- :global(.ms-ingredient-row) {
430
- grid-template-columns: 2fr 1fr 1fr auto;
431
- align-items: center;
432
- }
433
- }
434
-
435
- :global(.ms-ingredient-final) {
436
- font-weight: 800;
437
- color: hsl(150deg, 80%, 40%);
438
- font-size: 1.125rem;
439
- padding: 0.5rem;
440
- text-align: center;
441
- }
442
-
443
- :global(.ms-del-btn) {
444
- background: transparent;
445
- border: none;
446
- color: var(--ms-text-muted);
447
- cursor: pointer;
448
- padding: 0.5rem;
449
- border-radius: 0.5rem;
450
- transition: var(--ms-transition);
451
- }
452
-
453
- :global(.ms-del-btn):hover {
454
- background: hsl(0deg, 85%, 60%);
455
- color: var(--ms-bg-card);
456
- }
457
-
458
- .ms-add-btn {
459
- width: 100%;
460
- padding: 1rem;
461
- background: transparent;
462
- border: 2px dashed var(--ms-primary);
463
- color: var(--ms-primary);
464
- border-radius: 0.75rem;
465
- font-weight: 700;
466
- cursor: pointer;
467
- transition: var(--ms-transition);
468
- display: flex;
469
- align-items: center;
470
- justify-content: center;
471
- gap: 0.5rem;
472
- }
473
-
474
- .ms-add-btn:hover {
475
- background: var(--ms-primary-light);
476
- border-style: solid;
477
- }
478
-
479
- :global(.ms-empty-state) {
480
- text-align: center;
481
- padding: 2rem;
482
- color: var(--ms-text-muted);
483
- font-style: italic;
484
- }
485
-
486
- :global(.ms-inputs-grid) {
487
- display: grid;
488
- grid-template-columns: 1fr 1fr;
489
- gap: 1rem;
490
- }
491
- </style>
492
126