codeapp-js 0.3.0 → 1.0.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 (158) hide show
  1. package/AI/codeapp.agent.md +105 -0
  2. package/AI/skills/connections/SKILL.md +47 -0
  3. package/AI/skills/dataverse/SKILL.md +99 -0
  4. package/AI/skills/environment-variables/SKILL.md +89 -0
  5. package/AI/skills/frontend-design/SKILL.md +34 -0
  6. package/AI/skills/jira/SKILL.md +81 -0
  7. package/AI/skills/office365-groups/SKILL.md +61 -0
  8. package/AI/skills/office365-outlook/SKILL.md +52 -0
  9. package/AI/skills/office365-users/SKILL.md +78 -0
  10. package/AI/skills/sharepoint/SKILL.md +77 -0
  11. package/AI/skills/sql/SKILL.md +85 -0
  12. package/AI/skills/start/SKILL.md +46 -0
  13. package/AI/skills/teams/SKILL.md +55 -0
  14. package/{examples/combined demo/.power/schemas/office365groups/office365groups.Schema.json → codeApp/.power/schemas/office365groups/office365groups.Schema.json} +2203 -2203
  15. package/codeApp/dist/codeapp.js +95 -1792
  16. package/codeApp/dist/connectors/azureKeyvault.js +459 -0
  17. package/codeApp/dist/connectors/jira.js +1247 -0
  18. package/codeApp/dist/connectors/office365groups.js +642 -0
  19. package/codeApp/dist/connectors/office365users.js +513 -0
  20. package/codeApp/dist/connectors/outlook.js +1393 -0
  21. package/{dev files/sharepoint.js → codeApp/dist/connectors/sharepoint.js} +239 -112
  22. package/codeApp/dist/connectors/sql.js +149 -0
  23. package/codeApp/dist/connectors/teams.js +280 -0
  24. package/codeApp/dist/power-apps-data.js +16 -2
  25. package/examples/{kanban → apps/kanban}/dist/dataverse.js +94 -94
  26. package/examples/{kanban → apps/kanban}/dist/environmentVar.js +55 -55
  27. package/examples/{kanban → apps/kanban}/dist/index.css +605 -605
  28. package/examples/{kanban → apps/kanban}/dist/index.html +21 -21
  29. package/examples/{kanban → apps/kanban}/dist/index.js +860 -860
  30. package/examples/{kanban → apps/kanban}/dist/office365groups.js +97 -97
  31. package/examples/apps/kanban/dist/office365users.js +451 -0
  32. package/examples/{kanban → apps/kanban}/dist/outlook.js +162 -162
  33. package/examples/{planning Poker/dist/power-apps-data.js → apps/kanban/dist/power-apps-data.js} +2953 -2953
  34. package/examples/{kanban → apps/kanban}/dist/sharepoint.js +435 -339
  35. package/examples/{kanban → apps/kanban}/power.config.json +35 -35
  36. package/examples/{planning Poker → apps/planning Poker}/additional files/customizations (tables).xml +6428 -6428
  37. package/examples/{planning Poker → apps/planning Poker}/additional files/dataverse-tables.json +165 -165
  38. package/examples/{planning Poker → apps/planning Poker}/additional files/readme.md +122 -122
  39. package/examples/{planning Poker → apps/planning Poker}/dist/dataverse.js +78 -78
  40. package/examples/{planning Poker → apps/planning Poker}/dist/index.html +198 -198
  41. package/examples/{planning Poker → apps/planning Poker}/dist/index.js +954 -954
  42. package/examples/{todo/dist/power-apps-data.js → apps/planning Poker/dist/power-apps-data.js } +2953 -2953
  43. package/examples/{planning Poker → apps/planning Poker}/dist/styles.css +815 -815
  44. package/examples/{planning Poker → apps/planning Poker}/power.config.json +50 -50
  45. package/examples/{outlook Demo2 → apps/solution explorer}/dist/codeapp.js +9 -245
  46. package/examples/apps/solution explorer/dist/index.html +80 -0
  47. package/examples/apps/solution explorer/dist/index.js +735 -0
  48. package/examples/apps/solution explorer/dist/styles.css +571 -0
  49. package/examples/apps/solution explorer/power.config.json +151 -0
  50. package/examples/{todo → apps/todo}/dist/dataverse.js +64 -64
  51. package/examples/{todo → apps/todo}/dist/index.html +75 -75
  52. package/examples/{todo → apps/todo}/dist/index.js +8 -8
  53. package/examples/{kanban → apps/todo}/dist/power-apps-data.js +2953 -2953
  54. package/examples/{todo → apps/todo}/dist/renderer.js +375 -375
  55. package/examples/{todo → apps/todo}/dist/styles.css +691 -691
  56. package/examples/{todo → apps/todo}/power.config.json +34 -34
  57. package/examples/combined demo/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -7830
  58. package/examples/combined demo/.power/schemas/jira/jira.Schema.json +6903 -0
  59. package/examples/combined demo/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
  60. package/examples/combined demo/.power/schemas/teams/teams.Schema.json +11112 -0
  61. package/examples/combined demo/dist/codeapp.js +394 -1098
  62. package/examples/{outlook Demo2/OutlookDemo_1_0_0_1.zip → combined demo/dist/icon-512.png} +0 -0
  63. package/examples/combined demo/dist/index.html +29 -511
  64. package/examples/combined demo/dist/index.js +490 -470
  65. package/examples/combined demo/dist/office365users.js +513 -0
  66. package/examples/combined demo/dist/outlook.js +1393 -0
  67. package/examples/combined demo/dist/power-apps-data.js +3079 -3006
  68. package/examples/combined demo/dist/styles.css +483 -0
  69. package/examples/combined demo/power.config.json +33 -42
  70. package/examples/combined demo/src/generated/index.ts +12 -14
  71. package/examples/combined demo/src/generated/models/AzureKeyVaultModel.ts +107 -0
  72. package/examples/combined demo/src/generated/models/JiraModel.ts +501 -0
  73. package/examples/combined demo/src/generated/services/AzureKeyVaultService.ts +257 -0
  74. package/examples/combined demo/src/generated/services/JiraService.ts +1124 -0
  75. package/examples/dataverse Demo/dist/codeapp.js +394 -1085
  76. package/examples/dataverse Demo/dist/icon-512.png +0 -0
  77. package/examples/dataverse Demo/dist/index.html +146 -54
  78. package/examples/dataverse Demo/dist/index.js +693 -83
  79. package/examples/dataverse Demo/dist/power-apps-data.js +3079 -2911
  80. package/examples/dataverse Demo/dist/styles.css +528 -0
  81. package/examples/dataverse Demo/power.config.json +41 -35
  82. package/examples/dataverse Demo/readme.md +79 -79
  83. package/examples/groups Demo/dist/codeapp.js +394 -1085
  84. package/examples/groups Demo/dist/icon-512.png +0 -0
  85. package/examples/groups Demo/dist/index.html +21 -25
  86. package/examples/groups Demo/dist/index.js +304 -113
  87. package/examples/groups Demo/dist/office365groups.js +642 -0
  88. package/examples/groups Demo/dist/power-apps-data.js +3079 -2911
  89. package/examples/groups Demo/dist/styles.css +509 -0
  90. package/examples/groups Demo/power.config.json +25 -25
  91. package/examples/myProfile/dist/codeapp.js +398 -0
  92. package/examples/myProfile/dist/index.html +21 -184
  93. package/examples/myProfile/dist/index.js +324 -141
  94. package/examples/myProfile/dist/office365users.js +517 -169
  95. package/examples/myProfile/dist/power-apps-data.js +3080 -2953
  96. package/examples/myProfile/dist/styles.css +458 -0
  97. package/examples/myProfile/power.config.json +24 -23
  98. package/examples/outlook Demo/dist/codeapp.js +394 -1085
  99. package/examples/outlook Demo/dist/index.html +150 -35
  100. package/examples/outlook Demo/dist/index.js +516 -170
  101. package/examples/outlook Demo/dist/outlook.js +1393 -121
  102. package/examples/outlook Demo/dist/power-apps-data.js +3079 -2911
  103. package/examples/outlook Demo/dist/styles.css +408 -84
  104. package/examples/outlook Demo/power.config.json +24 -23
  105. package/examples/outlook Demo/readme.md +92 -82
  106. package/examples/sharePoint Demo/dist/codeapp.js +394 -1085
  107. package/examples/sharePoint Demo/dist/icon-512.png +0 -0
  108. package/examples/sharePoint Demo/dist/index.html +22 -255
  109. package/examples/sharePoint Demo/dist/index.js +899 -262
  110. package/examples/sharePoint Demo/dist/power-apps-data.js +3079 -2911
  111. package/examples/sharePoint Demo/dist/sharepoint.js +466 -0
  112. package/examples/sharePoint Demo/dist/styles.css +587 -0
  113. package/examples/sharePoint Demo/power.config.json +23 -22
  114. package/package.json +1 -1
  115. package/readme.md +465 -76
  116. package/.vscode/settings.json +0 -6
  117. package/dev files/customConnector.js +0 -98
  118. package/dev files/dataverse.js +0 -120
  119. package/dev files/environmentVar.js +0 -55
  120. package/dev files/office365groups.js +0 -65
  121. package/dev files/office365users.js +0 -169
  122. package/dev files/outlook.js +0 -330
  123. package/dev files/power-apps-data.js +0 -2952
  124. package/examples/combined demo/.power/schemas/office365/office365.Schema.json +0 -21098
  125. package/examples/combined demo/.power/schemas/office365users/office365users.Schema.json +0 -2094
  126. package/examples/kanban/agent/decision-log.md +0 -9
  127. package/examples/kanban/agent/mockup-01-editorial-glass.html +0 -159
  128. package/examples/kanban/agent/mockup-02-dark-rail.html +0 -147
  129. package/examples/kanban/agent/mockup-03-paper-grid.html +0 -114
  130. package/examples/kanban/agent/mockup-04-neon-minimal.html +0 -141
  131. package/examples/kanban/agent/mockup-05-mono-architect.html +0 -119
  132. package/examples/kanban/dist/office365users.js +0 -169
  133. package/examples/kanban/src/generated/index.ts +0 -14
  134. package/examples/kanban/src/generated/models/Office365GroupsModel.ts +0 -363
  135. package/examples/kanban/src/generated/models/Office365OutlookModel.ts +0 -2046
  136. package/examples/kanban/src/generated/models/Office365UsersModel.ts +0 -254
  137. package/examples/kanban/src/generated/services/Office365GroupsService.ts +0 -326
  138. package/examples/kanban/src/generated/services/Office365OutlookService.ts +0 -2476
  139. package/examples/kanban/src/generated/services/Office365UsersService.ts +0 -358
  140. package/examples/outlook Demo2/agent/decision-log.md +0 -7
  141. package/examples/outlook Demo2/dist/index.html +0 -98
  142. package/examples/outlook Demo2/dist/index.js +0 -272
  143. package/examples/outlook Demo2/dist/styles.css +0 -639
  144. package/examples/outlook Demo2/power.config.json +0 -23
  145. package/examples/planning Poker/.vscode/settings.json +0 -5
  146. package/examples/sharePoint Demo/agent/decision-log.md +0 -17
  147. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/index.ts +0 -0
  148. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365GroupsModel.ts +0 -0
  149. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365OutlookModel.ts +0 -0
  150. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365UsersModel.ts +0 -0
  151. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365GroupsService.ts +0 -0
  152. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365OutlookService.ts +0 -0
  153. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365UsersService.ts +0 -0
  154. /package/examples/{planning Poker → apps/planning Poker}/additional files/AgilePoker_1_0_0_1.zip +0 -0
  155. /package/examples/{planning Poker → apps/planning Poker}/additional files/PokerTables_1_0_0_1.zip +0 -0
  156. /package/examples/{outlook Demo2 → apps/solution explorer}/dist/icon-512.png +0 -0
  157. /package/examples/{outlook Demo2 → apps/solution explorer}/dist/power-apps-data.js +0 -0
  158. /package/examples/{todo → apps/todo}/dist/icon192.png +0 -0
@@ -1,605 +1,605 @@
1
-
2
- :root {
3
- --paper: #f6f0e4;
4
- --paper-strong: #fffdf8;
5
- --paper-soft: #efe5d4;
6
- --board: #ebe0cd;
7
- --card: #fffaf0;
8
- --ink: #22201d;
9
- --muted: #6f685f;
10
- --line: rgba(50, 42, 34, 0.12);
11
- --line-strong: rgba(50, 42, 34, 0.22);
12
- --grid-blue: rgba(89, 118, 173, 0.16);
13
- --grid-red: rgba(190, 92, 92, 0.13);
14
- --accent: #355fbb;
15
- --accent-soft: rgba(53, 95, 187, 0.12);
16
- --success: #2d8a63;
17
- --warning: #c58b28;
18
- --danger: #be5c5c;
19
- --shadow-soft: 0 14px 30px rgba(54, 42, 24, 0.08);
20
- --shadow-card: 0 10px 18px rgba(54, 42, 24, 0.08);
21
- --radius-xl: 30px;
22
- --radius-lg: 22px;
23
- --radius-md: 16px;
24
- }
25
-
26
- * {
27
- box-sizing: border-box;
28
- }
29
-
30
- html,
31
- body {
32
- margin: 0;
33
- min-height: 100%;
34
- }
35
-
36
- body {
37
- color: var(--ink);
38
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
39
- background:
40
- linear-gradient(90deg, transparent 79px, var(--grid-red) 79px, var(--grid-red) 81px, transparent 81px),
41
- linear-gradient(var(--grid-blue) 1px, transparent 1px),
42
- linear-gradient(90deg, var(--grid-blue) 1px, transparent 1px),
43
- linear-gradient(180deg, #fbf8f1 0%, var(--paper) 100%);
44
- background-size: 100% 100%, 32px 32px, 32px 32px, 100% 100%;
45
- background-attachment: fixed;
46
- }
47
-
48
- button,
49
- input,
50
- select,
51
- textarea {
52
- font: inherit;
53
- }
54
-
55
- button {
56
- border: 0;
57
- cursor: pointer;
58
- }
59
-
60
- #app {
61
- max-width: 1600px;
62
- margin: 0 auto;
63
- padding: 24px;
64
- }
65
-
66
- .shell {
67
- position: relative;
68
- overflow: hidden;
69
- border: 1px solid var(--line-strong);
70
- border-radius: 34px;
71
- background:
72
- linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(246, 240, 228, 0.92)),
73
- repeating-linear-gradient(180deg, transparent 0 28px, rgba(70, 101, 168, 0.06) 28px 29px);
74
- box-shadow: 0 22px 50px rgba(76, 58, 33, 0.12);
75
- }
76
-
77
- .shell::before {
78
- content: "";
79
- position: absolute;
80
- inset: 0;
81
- pointer-events: none;
82
- background:
83
- radial-gradient(circle at 12% 14%, rgba(53, 95, 187, 0.08), transparent 18%),
84
- radial-gradient(circle at 84% 16%, rgba(190, 92, 92, 0.07), transparent 16%),
85
- radial-gradient(circle at 90% 88%, rgba(53, 95, 187, 0.05), transparent 20%);
86
- }
87
-
88
- .hero {
89
- position: relative;
90
- display: grid;
91
- grid-template-columns: 1.2fr 0.9fr;
92
- gap: 22px;
93
- padding: 28px 28px 24px;
94
- border-bottom: 1px solid var(--line);
95
- }
96
-
97
- .hero::after {
98
- content: "";
99
- position: absolute;
100
- left: 28px;
101
- right: 28px;
102
- bottom: 0;
103
- height: 1px;
104
- background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
105
- }
106
-
107
- .heroTitle,
108
- .dialogTitle,
109
- .columnTitle,
110
- .cardTitle {
111
- font-family: Georgia, "Times New Roman", serif;
112
- }
113
-
114
- .heroTitle {
115
- margin: 0 0 12px;
116
- max-width: 720px;
117
- font-size: 3.3rem;
118
- line-height: 0.95;
119
- letter-spacing: -0.04em;
120
- }
121
-
122
- .heroCopy {
123
- margin: 0;
124
- max-width: 760px;
125
- color: var(--muted);
126
- font-size: 1rem;
127
- line-height: 1.8;
128
- }
129
-
130
- .heroMeta {
131
- display: grid;
132
- grid-template-columns: repeat(2, minmax(140px, 1fr));
133
- gap: 14px;
134
- }
135
-
136
- .metricCard {
137
- position: relative;
138
- border: 1px solid var(--line);
139
- border-radius: var(--radius-lg);
140
- padding: 18px;
141
- background:
142
- linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(250, 244, 233, 0.94)),
143
- repeating-linear-gradient(180deg, transparent 0 26px, rgba(70, 101, 168, 0.05) 26px 27px);
144
- box-shadow: var(--shadow-soft);
145
- }
146
-
147
- .metricCard::before {
148
- content: "";
149
- position: absolute;
150
- top: 12px;
151
- left: 12px;
152
- width: 34px;
153
- height: 10px;
154
- border-radius: 999px;
155
- background: rgba(53, 95, 187, 0.08);
156
- }
157
-
158
- .metricLabel {
159
- display: block;
160
- margin-bottom: 8px;
161
- color: var(--muted);
162
- font-size: 0.8rem;
163
- text-transform: uppercase;
164
- letter-spacing: 0.12em;
165
- }
166
-
167
- .metricValue {
168
- font-size: 2rem;
169
- font-weight: 700;
170
- letter-spacing: -0.04em;
171
- }
172
-
173
- .toolbar {
174
- display: flex;
175
- justify-content: space-between;
176
- align-items: center;
177
- gap: 18px;
178
- padding: 18px 28px;
179
- border-bottom: 1px solid var(--line);
180
- background: rgba(255, 251, 244, 0.72);
181
- }
182
-
183
- .toolbarGroup {
184
- display: flex;
185
- gap: 12px;
186
- align-items: center;
187
- flex-wrap: wrap;
188
- }
189
-
190
- .toolbarInput,
191
- .toolbarSelect,
192
- .toolbarTextarea {
193
- width: 100%;
194
- border: 1px solid var(--line-strong);
195
- border-radius: 14px;
196
- padding: 12px 14px;
197
- color: var(--ink);
198
- background: rgba(255, 253, 248, 0.98);
199
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
200
- outline: none;
201
- }
202
-
203
- .toolbarInput::placeholder,
204
- .toolbarTextarea::placeholder {
205
- color: #8d8479;
206
- }
207
-
208
- .toolbarInput:focus,
209
- .toolbarSelect:focus,
210
- .toolbarTextarea:focus {
211
- border-color: rgba(53, 95, 187, 0.48);
212
- box-shadow: 0 0 0 4px rgba(53, 95, 187, 0.12);
213
- }
214
-
215
- .primaryButton,
216
- .secondaryButton,
217
- .ghostButton {
218
- border-radius: 14px;
219
- padding: 12px 16px;
220
- font-weight: 600;
221
- transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
222
- }
223
-
224
- .primaryButton {
225
- color: #fdfbf6;
226
- background: linear-gradient(135deg, #3056aa, #4c76d2);
227
- box-shadow: 0 12px 24px rgba(53, 95, 187, 0.18);
228
- }
229
-
230
- .secondaryButton {
231
- color: var(--ink);
232
- border: 1px solid var(--line-strong);
233
- background: rgba(255, 250, 240, 0.88);
234
- }
235
-
236
- .ghostButton {
237
- color: var(--muted);
238
- border: 1px dashed rgba(50, 42, 34, 0.28);
239
- background: rgba(255, 250, 240, 0.68);
240
- }
241
-
242
- .primaryButton:hover,
243
- .secondaryButton:hover,
244
- .ghostButton:hover {
245
- transform: translateY(-1px);
246
- box-shadow: 0 8px 18px rgba(54, 42, 24, 0.1);
247
- }
248
-
249
- .boardWrap {
250
- padding: 22px;
251
- overflow-x: auto;
252
- }
253
-
254
- .board {
255
- display: grid;
256
- grid-template-columns: repeat(5, minmax(262px, 1fr));
257
- gap: 16px;
258
- min-width: 1380px;
259
- }
260
-
261
- .column {
262
- position: relative;
263
- display: flex;
264
- flex-direction: column;
265
- min-height: 620px;
266
- border: 1px solid var(--line-strong);
267
- border-radius: 26px;
268
- background:
269
- linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(247, 240, 229, 0.92)),
270
- repeating-linear-gradient(180deg, transparent 0 30px, rgba(70, 101, 168, 0.06) 30px 31px);
271
- box-shadow: var(--shadow-soft);
272
- overflow: hidden;
273
- }
274
-
275
- .column::before {
276
- content: "";
277
- position: absolute;
278
- top: 14px;
279
- right: 16px;
280
- width: 42px;
281
- height: 12px;
282
- border-radius: 999px;
283
- background: rgba(53, 95, 187, 0.08);
284
- }
285
-
286
- .columnHeader {
287
- display: flex;
288
- justify-content: space-between;
289
- align-items: center;
290
- gap: 10px;
291
- padding: 16px 16px 14px;
292
- border-bottom: 1px solid var(--line);
293
- }
294
-
295
- .columnTitleWrap {
296
- display: flex;
297
- align-items: center;
298
- gap: 10px;
299
- }
300
-
301
- .columnDot {
302
- width: 10px;
303
- height: 10px;
304
- border-radius: 999px;
305
- box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45);
306
- }
307
-
308
- .columnTitle {
309
- margin: 0;
310
- font-size: 0.86rem;
311
- text-transform: uppercase;
312
- letter-spacing: 0.16em;
313
- }
314
-
315
- .columnCount {
316
- color: var(--muted);
317
- font-size: 0.82rem;
318
- font-weight: 700;
319
- }
320
-
321
- .columnBody {
322
- flex: 1;
323
- padding: 14px;
324
- background:
325
- linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
326
- repeating-linear-gradient(180deg, transparent 0 30px, rgba(70, 101, 168, 0.045) 30px 31px);
327
- transition: background 180ms ease;
328
- }
329
-
330
- .columnBody.dragOver {
331
- background:
332
- linear-gradient(180deg, rgba(53, 95, 187, 0.09), rgba(53, 95, 187, 0.02)),
333
- repeating-linear-gradient(180deg, transparent 0 30px, rgba(70, 101, 168, 0.07) 30px 31px);
334
- }
335
-
336
- .card {
337
- position: relative;
338
- margin-bottom: 12px;
339
- padding: 14px;
340
- border: 1px solid rgba(50, 42, 34, 0.14);
341
- border-radius: 18px;
342
- background:
343
- linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(252, 246, 236, 0.96)),
344
- repeating-linear-gradient(180deg, transparent 0 26px, rgba(70, 101, 168, 0.05) 26px 27px);
345
- box-shadow: var(--shadow-card);
346
- cursor: grab;
347
- transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
348
- }
349
-
350
- .card::before {
351
- content: "";
352
- position: absolute;
353
- top: 10px;
354
- right: 14px;
355
- width: 30px;
356
- height: 10px;
357
- border-radius: 999px;
358
- background: rgba(190, 92, 92, 0.08);
359
- }
360
-
361
- .card:hover {
362
- transform: translateY(-2px);
363
- border-color: rgba(53, 95, 187, 0.24);
364
- box-shadow: 0 14px 26px rgba(54, 42, 24, 0.12);
365
- }
366
-
367
- .card:active {
368
- cursor: grabbing;
369
- }
370
-
371
- .card.dragging {
372
- opacity: 0.56;
373
- transform: rotate(1deg) scale(0.99);
374
- }
375
-
376
- .cardHeader {
377
- display: flex;
378
- justify-content: space-between;
379
- gap: 12px;
380
- align-items: start;
381
- margin-bottom: 12px;
382
- }
383
-
384
- .cardTitle {
385
- margin: 0;
386
- font-size: 1.06rem;
387
- line-height: 1.35;
388
- }
389
-
390
- .badge {
391
- display: inline-flex;
392
- align-items: center;
393
- justify-content: center;
394
- min-width: 68px;
395
- padding: 7px 10px;
396
- border-radius: 999px;
397
- font-size: 0.72rem;
398
- font-weight: 700;
399
- letter-spacing: 0.06em;
400
- }
401
-
402
- .badgePriorityHigh {
403
- color: #8e3348;
404
- background: rgba(190, 92, 92, 0.14);
405
- }
406
-
407
- .badgePriorityMedium {
408
- color: #8a611b;
409
- background: rgba(197, 139, 40, 0.16);
410
- }
411
-
412
- .badgePriorityLow {
413
- color: #296e53;
414
- background: rgba(45, 138, 99, 0.12);
415
- }
416
-
417
- .cardDescription {
418
- margin: 0 0 14px;
419
- color: var(--muted);
420
- font-size: 0.92rem;
421
- line-height: 1.65;
422
- }
423
-
424
- .progressBar {
425
- height: 9px;
426
- margin-bottom: 12px;
427
- border-radius: 999px;
428
- background: rgba(53, 95, 187, 0.08);
429
- overflow: hidden;
430
- }
431
-
432
- .progressValue {
433
- height: 100%;
434
- border-radius: inherit;
435
- background: linear-gradient(90deg, #355fbb, #7ea4e7);
436
- }
437
-
438
- .cardMetaGrid {
439
- display: grid;
440
- grid-template-columns: repeat(2, minmax(0, 1fr));
441
- gap: 10px;
442
- margin-bottom: 12px;
443
- }
444
-
445
- .metaItem {
446
- border: 1px solid var(--line);
447
- border-radius: 14px;
448
- padding: 10px;
449
- background: rgba(255, 252, 246, 0.86);
450
- }
451
-
452
- .metaLabel {
453
- display: block;
454
- margin-bottom: 6px;
455
- color: var(--muted);
456
- font-size: 0.7rem;
457
- text-transform: uppercase;
458
- letter-spacing: 0.09em;
459
- }
460
-
461
- .metaValue {
462
- font-size: 0.9rem;
463
- font-weight: 600;
464
- }
465
-
466
- .cardFooter {
467
- display: flex;
468
- justify-content: space-between;
469
- gap: 12px;
470
- align-items: center;
471
- color: var(--muted);
472
- font-size: 0.8rem;
473
- }
474
-
475
- .cardFooter .ghostButton {
476
- padding: 8px 12px;
477
- font-size: 0.78rem;
478
- }
479
-
480
- .emptyState {
481
- min-height: 120px;
482
- display: flex;
483
- align-items: center;
484
- justify-content: center;
485
- padding: 18px;
486
- text-align: center;
487
- color: var(--muted);
488
- border: 1px dashed rgba(50, 42, 34, 0.22);
489
- border-radius: 18px;
490
- background: rgba(255, 252, 246, 0.68);
491
- }
492
-
493
- .dialogBackdrop {
494
- position: fixed;
495
- inset: 0;
496
- z-index: 20;
497
- display: none;
498
- align-items: center;
499
- justify-content: center;
500
- padding: 20px;
501
- background: rgba(40, 32, 20, 0.26);
502
- }
503
-
504
- .dialogBackdrop.open {
505
- display: flex;
506
- }
507
-
508
- .dialog {
509
- width: min(720px, 100%);
510
- overflow: hidden;
511
- border: 1px solid var(--line-strong);
512
- border-radius: 28px;
513
- background:
514
- linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 240, 228, 0.98)),
515
- repeating-linear-gradient(180deg, transparent 0 29px, rgba(70, 101, 168, 0.05) 29px 30px);
516
- box-shadow: 0 28px 60px rgba(54, 42, 24, 0.18);
517
- }
518
-
519
- .dialogHeader,
520
- .dialogFooter {
521
- padding: 18px 22px;
522
- }
523
-
524
- .dialogHeader {
525
- border-bottom: 1px solid var(--line);
526
- }
527
-
528
- .dialogFooter {
529
- display: flex;
530
- justify-content: space-between;
531
- gap: 12px;
532
- align-items: center;
533
- border-top: 1px solid var(--line);
534
- background: rgba(255, 250, 240, 0.76);
535
- }
536
-
537
- .dialogTitle {
538
- margin: 0;
539
- font-size: 1.34rem;
540
- }
541
-
542
- .dialogBody {
543
- padding: 20px 22px;
544
- display: grid;
545
- gap: 14px;
546
- }
547
-
548
- .formGrid {
549
- display: grid;
550
- grid-template-columns: repeat(2, minmax(0, 1fr));
551
- gap: 14px;
552
- }
553
-
554
- .field {
555
- display: grid;
556
- gap: 8px;
557
- }
558
-
559
- .fieldWide {
560
- grid-column: 1 / -1;
561
- }
562
-
563
- .field label {
564
- color: var(--muted);
565
- font-size: 0.82rem;
566
- font-weight: 700;
567
- text-transform: uppercase;
568
- letter-spacing: 0.08em;
569
- }
570
-
571
- .helperText,
572
- .statusText {
573
- color: var(--muted);
574
- font-size: 0.8rem;
575
- }
576
-
577
- .hidden {
578
- display: none !important;
579
- }
580
-
581
- @media (max-width: 1100px) {
582
- .hero {
583
- grid-template-columns: 1fr;
584
- }
585
- }
586
-
587
- @media (max-width: 720px) {
588
- #app {
589
- padding: 14px;
590
- }
591
-
592
- .heroTitle {
593
- font-size: 2.5rem;
594
- }
595
-
596
- .toolbar,
597
- .dialogFooter {
598
- flex-direction: column;
599
- align-items: stretch;
600
- }
601
-
602
- .formGrid {
603
- grid-template-columns: 1fr;
604
- }
605
- }
1
+
2
+ :root {
3
+ --paper: #f6f0e4;
4
+ --paper-strong: #fffdf8;
5
+ --paper-soft: #efe5d4;
6
+ --board: #ebe0cd;
7
+ --card: #fffaf0;
8
+ --ink: #22201d;
9
+ --muted: #6f685f;
10
+ --line: rgba(50, 42, 34, 0.12);
11
+ --line-strong: rgba(50, 42, 34, 0.22);
12
+ --grid-blue: rgba(89, 118, 173, 0.16);
13
+ --grid-red: rgba(190, 92, 92, 0.13);
14
+ --accent: #355fbb;
15
+ --accent-soft: rgba(53, 95, 187, 0.12);
16
+ --success: #2d8a63;
17
+ --warning: #c58b28;
18
+ --danger: #be5c5c;
19
+ --shadow-soft: 0 14px 30px rgba(54, 42, 24, 0.08);
20
+ --shadow-card: 0 10px 18px rgba(54, 42, 24, 0.08);
21
+ --radius-xl: 30px;
22
+ --radius-lg: 22px;
23
+ --radius-md: 16px;
24
+ }
25
+
26
+ * {
27
+ box-sizing: border-box;
28
+ }
29
+
30
+ html,
31
+ body {
32
+ margin: 0;
33
+ min-height: 100%;
34
+ }
35
+
36
+ body {
37
+ color: var(--ink);
38
+ font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
39
+ background:
40
+ linear-gradient(90deg, transparent 79px, var(--grid-red) 79px, var(--grid-red) 81px, transparent 81px),
41
+ linear-gradient(var(--grid-blue) 1px, transparent 1px),
42
+ linear-gradient(90deg, var(--grid-blue) 1px, transparent 1px),
43
+ linear-gradient(180deg, #fbf8f1 0%, var(--paper) 100%);
44
+ background-size: 100% 100%, 32px 32px, 32px 32px, 100% 100%;
45
+ background-attachment: fixed;
46
+ }
47
+
48
+ button,
49
+ input,
50
+ select,
51
+ textarea {
52
+ font: inherit;
53
+ }
54
+
55
+ button {
56
+ border: 0;
57
+ cursor: pointer;
58
+ }
59
+
60
+ #app {
61
+ max-width: 1600px;
62
+ margin: 0 auto;
63
+ padding: 24px;
64
+ }
65
+
66
+ .shell {
67
+ position: relative;
68
+ overflow: hidden;
69
+ border: 1px solid var(--line-strong);
70
+ border-radius: 34px;
71
+ background:
72
+ linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(246, 240, 228, 0.92)),
73
+ repeating-linear-gradient(180deg, transparent 0 28px, rgba(70, 101, 168, 0.06) 28px 29px);
74
+ box-shadow: 0 22px 50px rgba(76, 58, 33, 0.12);
75
+ }
76
+
77
+ .shell::before {
78
+ content: "";
79
+ position: absolute;
80
+ inset: 0;
81
+ pointer-events: none;
82
+ background:
83
+ radial-gradient(circle at 12% 14%, rgba(53, 95, 187, 0.08), transparent 18%),
84
+ radial-gradient(circle at 84% 16%, rgba(190, 92, 92, 0.07), transparent 16%),
85
+ radial-gradient(circle at 90% 88%, rgba(53, 95, 187, 0.05), transparent 20%);
86
+ }
87
+
88
+ .hero {
89
+ position: relative;
90
+ display: grid;
91
+ grid-template-columns: 1.2fr 0.9fr;
92
+ gap: 22px;
93
+ padding: 28px 28px 24px;
94
+ border-bottom: 1px solid var(--line);
95
+ }
96
+
97
+ .hero::after {
98
+ content: "";
99
+ position: absolute;
100
+ left: 28px;
101
+ right: 28px;
102
+ bottom: 0;
103
+ height: 1px;
104
+ background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
105
+ }
106
+
107
+ .heroTitle,
108
+ .dialogTitle,
109
+ .columnTitle,
110
+ .cardTitle {
111
+ font-family: Georgia, "Times New Roman", serif;
112
+ }
113
+
114
+ .heroTitle {
115
+ margin: 0 0 12px;
116
+ max-width: 720px;
117
+ font-size: 3.3rem;
118
+ line-height: 0.95;
119
+ letter-spacing: -0.04em;
120
+ }
121
+
122
+ .heroCopy {
123
+ margin: 0;
124
+ max-width: 760px;
125
+ color: var(--muted);
126
+ font-size: 1rem;
127
+ line-height: 1.8;
128
+ }
129
+
130
+ .heroMeta {
131
+ display: grid;
132
+ grid-template-columns: repeat(2, minmax(140px, 1fr));
133
+ gap: 14px;
134
+ }
135
+
136
+ .metricCard {
137
+ position: relative;
138
+ border: 1px solid var(--line);
139
+ border-radius: var(--radius-lg);
140
+ padding: 18px;
141
+ background:
142
+ linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(250, 244, 233, 0.94)),
143
+ repeating-linear-gradient(180deg, transparent 0 26px, rgba(70, 101, 168, 0.05) 26px 27px);
144
+ box-shadow: var(--shadow-soft);
145
+ }
146
+
147
+ .metricCard::before {
148
+ content: "";
149
+ position: absolute;
150
+ top: 12px;
151
+ left: 12px;
152
+ width: 34px;
153
+ height: 10px;
154
+ border-radius: 999px;
155
+ background: rgba(53, 95, 187, 0.08);
156
+ }
157
+
158
+ .metricLabel {
159
+ display: block;
160
+ margin-bottom: 8px;
161
+ color: var(--muted);
162
+ font-size: 0.8rem;
163
+ text-transform: uppercase;
164
+ letter-spacing: 0.12em;
165
+ }
166
+
167
+ .metricValue {
168
+ font-size: 2rem;
169
+ font-weight: 700;
170
+ letter-spacing: -0.04em;
171
+ }
172
+
173
+ .toolbar {
174
+ display: flex;
175
+ justify-content: space-between;
176
+ align-items: center;
177
+ gap: 18px;
178
+ padding: 18px 28px;
179
+ border-bottom: 1px solid var(--line);
180
+ background: rgba(255, 251, 244, 0.72);
181
+ }
182
+
183
+ .toolbarGroup {
184
+ display: flex;
185
+ gap: 12px;
186
+ align-items: center;
187
+ flex-wrap: wrap;
188
+ }
189
+
190
+ .toolbarInput,
191
+ .toolbarSelect,
192
+ .toolbarTextarea {
193
+ width: 100%;
194
+ border: 1px solid var(--line-strong);
195
+ border-radius: 14px;
196
+ padding: 12px 14px;
197
+ color: var(--ink);
198
+ background: rgba(255, 253, 248, 0.98);
199
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
200
+ outline: none;
201
+ }
202
+
203
+ .toolbarInput::placeholder,
204
+ .toolbarTextarea::placeholder {
205
+ color: #8d8479;
206
+ }
207
+
208
+ .toolbarInput:focus,
209
+ .toolbarSelect:focus,
210
+ .toolbarTextarea:focus {
211
+ border-color: rgba(53, 95, 187, 0.48);
212
+ box-shadow: 0 0 0 4px rgba(53, 95, 187, 0.12);
213
+ }
214
+
215
+ .primaryButton,
216
+ .secondaryButton,
217
+ .ghostButton {
218
+ border-radius: 14px;
219
+ padding: 12px 16px;
220
+ font-weight: 600;
221
+ transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
222
+ }
223
+
224
+ .primaryButton {
225
+ color: #fdfbf6;
226
+ background: linear-gradient(135deg, #3056aa, #4c76d2);
227
+ box-shadow: 0 12px 24px rgba(53, 95, 187, 0.18);
228
+ }
229
+
230
+ .secondaryButton {
231
+ color: var(--ink);
232
+ border: 1px solid var(--line-strong);
233
+ background: rgba(255, 250, 240, 0.88);
234
+ }
235
+
236
+ .ghostButton {
237
+ color: var(--muted);
238
+ border: 1px dashed rgba(50, 42, 34, 0.28);
239
+ background: rgba(255, 250, 240, 0.68);
240
+ }
241
+
242
+ .primaryButton:hover,
243
+ .secondaryButton:hover,
244
+ .ghostButton:hover {
245
+ transform: translateY(-1px);
246
+ box-shadow: 0 8px 18px rgba(54, 42, 24, 0.1);
247
+ }
248
+
249
+ .boardWrap {
250
+ padding: 22px;
251
+ overflow-x: auto;
252
+ }
253
+
254
+ .board {
255
+ display: grid;
256
+ grid-template-columns: repeat(5, minmax(262px, 1fr));
257
+ gap: 16px;
258
+ min-width: 1380px;
259
+ }
260
+
261
+ .column {
262
+ position: relative;
263
+ display: flex;
264
+ flex-direction: column;
265
+ min-height: 620px;
266
+ border: 1px solid var(--line-strong);
267
+ border-radius: 26px;
268
+ background:
269
+ linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(247, 240, 229, 0.92)),
270
+ repeating-linear-gradient(180deg, transparent 0 30px, rgba(70, 101, 168, 0.06) 30px 31px);
271
+ box-shadow: var(--shadow-soft);
272
+ overflow: hidden;
273
+ }
274
+
275
+ .column::before {
276
+ content: "";
277
+ position: absolute;
278
+ top: 14px;
279
+ right: 16px;
280
+ width: 42px;
281
+ height: 12px;
282
+ border-radius: 999px;
283
+ background: rgba(53, 95, 187, 0.08);
284
+ }
285
+
286
+ .columnHeader {
287
+ display: flex;
288
+ justify-content: space-between;
289
+ align-items: center;
290
+ gap: 10px;
291
+ padding: 16px 16px 14px;
292
+ border-bottom: 1px solid var(--line);
293
+ }
294
+
295
+ .columnTitleWrap {
296
+ display: flex;
297
+ align-items: center;
298
+ gap: 10px;
299
+ }
300
+
301
+ .columnDot {
302
+ width: 10px;
303
+ height: 10px;
304
+ border-radius: 999px;
305
+ box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45);
306
+ }
307
+
308
+ .columnTitle {
309
+ margin: 0;
310
+ font-size: 0.86rem;
311
+ text-transform: uppercase;
312
+ letter-spacing: 0.16em;
313
+ }
314
+
315
+ .columnCount {
316
+ color: var(--muted);
317
+ font-size: 0.82rem;
318
+ font-weight: 700;
319
+ }
320
+
321
+ .columnBody {
322
+ flex: 1;
323
+ padding: 14px;
324
+ background:
325
+ linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
326
+ repeating-linear-gradient(180deg, transparent 0 30px, rgba(70, 101, 168, 0.045) 30px 31px);
327
+ transition: background 180ms ease;
328
+ }
329
+
330
+ .columnBody.dragOver {
331
+ background:
332
+ linear-gradient(180deg, rgba(53, 95, 187, 0.09), rgba(53, 95, 187, 0.02)),
333
+ repeating-linear-gradient(180deg, transparent 0 30px, rgba(70, 101, 168, 0.07) 30px 31px);
334
+ }
335
+
336
+ .card {
337
+ position: relative;
338
+ margin-bottom: 12px;
339
+ padding: 14px;
340
+ border: 1px solid rgba(50, 42, 34, 0.14);
341
+ border-radius: 18px;
342
+ background:
343
+ linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(252, 246, 236, 0.96)),
344
+ repeating-linear-gradient(180deg, transparent 0 26px, rgba(70, 101, 168, 0.05) 26px 27px);
345
+ box-shadow: var(--shadow-card);
346
+ cursor: grab;
347
+ transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
348
+ }
349
+
350
+ .card::before {
351
+ content: "";
352
+ position: absolute;
353
+ top: 10px;
354
+ right: 14px;
355
+ width: 30px;
356
+ height: 10px;
357
+ border-radius: 999px;
358
+ background: rgba(190, 92, 92, 0.08);
359
+ }
360
+
361
+ .card:hover {
362
+ transform: translateY(-2px);
363
+ border-color: rgba(53, 95, 187, 0.24);
364
+ box-shadow: 0 14px 26px rgba(54, 42, 24, 0.12);
365
+ }
366
+
367
+ .card:active {
368
+ cursor: grabbing;
369
+ }
370
+
371
+ .card.dragging {
372
+ opacity: 0.56;
373
+ transform: rotate(1deg) scale(0.99);
374
+ }
375
+
376
+ .cardHeader {
377
+ display: flex;
378
+ justify-content: space-between;
379
+ gap: 12px;
380
+ align-items: start;
381
+ margin-bottom: 12px;
382
+ }
383
+
384
+ .cardTitle {
385
+ margin: 0;
386
+ font-size: 1.06rem;
387
+ line-height: 1.35;
388
+ }
389
+
390
+ .badge {
391
+ display: inline-flex;
392
+ align-items: center;
393
+ justify-content: center;
394
+ min-width: 68px;
395
+ padding: 7px 10px;
396
+ border-radius: 999px;
397
+ font-size: 0.72rem;
398
+ font-weight: 700;
399
+ letter-spacing: 0.06em;
400
+ }
401
+
402
+ .badgePriorityHigh {
403
+ color: #8e3348;
404
+ background: rgba(190, 92, 92, 0.14);
405
+ }
406
+
407
+ .badgePriorityMedium {
408
+ color: #8a611b;
409
+ background: rgba(197, 139, 40, 0.16);
410
+ }
411
+
412
+ .badgePriorityLow {
413
+ color: #296e53;
414
+ background: rgba(45, 138, 99, 0.12);
415
+ }
416
+
417
+ .cardDescription {
418
+ margin: 0 0 14px;
419
+ color: var(--muted);
420
+ font-size: 0.92rem;
421
+ line-height: 1.65;
422
+ }
423
+
424
+ .progressBar {
425
+ height: 9px;
426
+ margin-bottom: 12px;
427
+ border-radius: 999px;
428
+ background: rgba(53, 95, 187, 0.08);
429
+ overflow: hidden;
430
+ }
431
+
432
+ .progressValue {
433
+ height: 100%;
434
+ border-radius: inherit;
435
+ background: linear-gradient(90deg, #355fbb, #7ea4e7);
436
+ }
437
+
438
+ .cardMetaGrid {
439
+ display: grid;
440
+ grid-template-columns: repeat(2, minmax(0, 1fr));
441
+ gap: 10px;
442
+ margin-bottom: 12px;
443
+ }
444
+
445
+ .metaItem {
446
+ border: 1px solid var(--line);
447
+ border-radius: 14px;
448
+ padding: 10px;
449
+ background: rgba(255, 252, 246, 0.86);
450
+ }
451
+
452
+ .metaLabel {
453
+ display: block;
454
+ margin-bottom: 6px;
455
+ color: var(--muted);
456
+ font-size: 0.7rem;
457
+ text-transform: uppercase;
458
+ letter-spacing: 0.09em;
459
+ }
460
+
461
+ .metaValue {
462
+ font-size: 0.9rem;
463
+ font-weight: 600;
464
+ }
465
+
466
+ .cardFooter {
467
+ display: flex;
468
+ justify-content: space-between;
469
+ gap: 12px;
470
+ align-items: center;
471
+ color: var(--muted);
472
+ font-size: 0.8rem;
473
+ }
474
+
475
+ .cardFooter .ghostButton {
476
+ padding: 8px 12px;
477
+ font-size: 0.78rem;
478
+ }
479
+
480
+ .emptyState {
481
+ min-height: 120px;
482
+ display: flex;
483
+ align-items: center;
484
+ justify-content: center;
485
+ padding: 18px;
486
+ text-align: center;
487
+ color: var(--muted);
488
+ border: 1px dashed rgba(50, 42, 34, 0.22);
489
+ border-radius: 18px;
490
+ background: rgba(255, 252, 246, 0.68);
491
+ }
492
+
493
+ .dialogBackdrop {
494
+ position: fixed;
495
+ inset: 0;
496
+ z-index: 20;
497
+ display: none;
498
+ align-items: center;
499
+ justify-content: center;
500
+ padding: 20px;
501
+ background: rgba(40, 32, 20, 0.26);
502
+ }
503
+
504
+ .dialogBackdrop.open {
505
+ display: flex;
506
+ }
507
+
508
+ .dialog {
509
+ width: min(720px, 100%);
510
+ overflow: hidden;
511
+ border: 1px solid var(--line-strong);
512
+ border-radius: 28px;
513
+ background:
514
+ linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 240, 228, 0.98)),
515
+ repeating-linear-gradient(180deg, transparent 0 29px, rgba(70, 101, 168, 0.05) 29px 30px);
516
+ box-shadow: 0 28px 60px rgba(54, 42, 24, 0.18);
517
+ }
518
+
519
+ .dialogHeader,
520
+ .dialogFooter {
521
+ padding: 18px 22px;
522
+ }
523
+
524
+ .dialogHeader {
525
+ border-bottom: 1px solid var(--line);
526
+ }
527
+
528
+ .dialogFooter {
529
+ display: flex;
530
+ justify-content: space-between;
531
+ gap: 12px;
532
+ align-items: center;
533
+ border-top: 1px solid var(--line);
534
+ background: rgba(255, 250, 240, 0.76);
535
+ }
536
+
537
+ .dialogTitle {
538
+ margin: 0;
539
+ font-size: 1.34rem;
540
+ }
541
+
542
+ .dialogBody {
543
+ padding: 20px 22px;
544
+ display: grid;
545
+ gap: 14px;
546
+ }
547
+
548
+ .formGrid {
549
+ display: grid;
550
+ grid-template-columns: repeat(2, minmax(0, 1fr));
551
+ gap: 14px;
552
+ }
553
+
554
+ .field {
555
+ display: grid;
556
+ gap: 8px;
557
+ }
558
+
559
+ .fieldWide {
560
+ grid-column: 1 / -1;
561
+ }
562
+
563
+ .field label {
564
+ color: var(--muted);
565
+ font-size: 0.82rem;
566
+ font-weight: 700;
567
+ text-transform: uppercase;
568
+ letter-spacing: 0.08em;
569
+ }
570
+
571
+ .helperText,
572
+ .statusText {
573
+ color: var(--muted);
574
+ font-size: 0.8rem;
575
+ }
576
+
577
+ .hidden {
578
+ display: none !important;
579
+ }
580
+
581
+ @media (max-width: 1100px) {
582
+ .hero {
583
+ grid-template-columns: 1fr;
584
+ }
585
+ }
586
+
587
+ @media (max-width: 720px) {
588
+ #app {
589
+ padding: 14px;
590
+ }
591
+
592
+ .heroTitle {
593
+ font-size: 2.5rem;
594
+ }
595
+
596
+ .toolbar,
597
+ .dialogFooter {
598
+ flex-direction: column;
599
+ align-items: stretch;
600
+ }
601
+
602
+ .formGrid {
603
+ grid-template-columns: 1fr;
604
+ }
605
+ }