File size: 6,979 Bytes
4edc3e5
 
 
 
 
 
 
 
 
 
 
 
 
f63ea4d
 
 
 
 
4edc3e5
 
 
 
f63ea4d
 
 
 
 
 
 
 
 
4edc3e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eebe76e
4edc3e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746fd2b
4edc3e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
/* Dark theme page background */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: #0b1020;
  color: #f5f5f5;
}

body.no-scroll {
  overflow: hidden;
}

button {
  font-size: 1rem;
  user-select: none;
}

a {
  color: #4da6ff;
}

label, select, legend {
  user-select: none;
}

.unselectable {
  user-select: none;
}


/* SVG ICONS */
svg {
  width: 16px;
  height: 16px;
}

/* Spinning animation for the uploading button */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spinning {
  animation: spin 1s linear infinite;
}

/* Generic buttons */
.ok-button {
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  background: #4c6fff;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 200px;
}

.ok-button:hover {
  background: #3453e6;
}

.no-button {
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  background: #dc2626;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 200px;
}

.no-button:hover {
  background-color: #b91c1c;
}

.disabled-button {
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  background-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  max-width: 200px;
}

.cancelBtn {
  background: #0d132475;
  color: #9ca3af;
  border: 1px solid #2c3554;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 200px;
}

.cancelBtn:hover {
  background: #0d1324;
  color: #f5f5f5;
  border-color: #4a5f8f;
}

.center-button {
  text-align: center;
}

/* Modals */
.modal {
  /* Covers the entier view port */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
        
  /* Center the content of the modal */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Put the modal in front */
  z-index: 1;
  
  /* Mask what is behind the modal */
  background-color: rgba(0, 0, 0, 0.8);
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Dark theme overlay box */
.modal-content {
  /* Snap this slide to the left edge of the slider */
  scroll-snap-align: start;
  
  /* Center the content of the modal */
  display: flex;
  justify-content: flex-start;

  /* Looks */
  background: #141b2f; /* CHANGED: match theme */
  color: #f5f5f5; /* NEW: readable on dark bg */
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  margin: 0 auto;

  /* Enable scrolling */
  overflow-y: auto;
}

/* Modals with slider animation */
.slider {
  /* Smooth scrolling */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  
  /* Clip slides that are off-screen */
  overflow-x: hidden;
  
  /* Constrain the slider so children can scroll */
  max-height: 90dvh;  
  
  /* Place the elements next to the others horizontally*/
  display: flex;
}

.slide {
  /* Each slide fills the full width of the slider */
  min-width: 100%;
}

.modal-content.slide {
  max-width: 400px;
}

.language-modal,
.consent-box,
.profile,
.feedback-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.language-modal,
.consent-box {
  max-height: 350px;
}

/* Checkbox & Radio Groups */
.form-group {
  margin-bottom: 1.5rem;
}

label, .group-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
  gap: 12px;
  margin-top: 8px;
}

.checkbox-grid-lang {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-grid-lang label,
.checkbox-grid label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid #eee; /* Light border makes it look like a contained element */
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.checkbox-grid-lang label:hover,
.checkbox-grid label:hover {
  background-color: #ffffff; /* The white background you wanted */
  color: #111111;            /* Forces the text to be dark/visible */
  border-color: #007bff;     /* Optional: adds a blue border to show it's active */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Optional: adds a soft depth */
}

.radio-group label, .checkbox-grid label, .checkbox-grid-lang label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* Modern Inputs */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #007bff; /* Modern way to color native inputs */
}

select, input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 6px 12px 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
select:focus, input[type="text"]:focus {
  border-color: #007bff;
}

/* Close button (X) */
.closeBtn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;        /* Explicit small width */
  height: 28px;       /* Explicit small height */
  padding: 0;
  background: transparent;
  color: #6b7280;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  line-height: 28px;  /* Center the × vertically */
  text-align: center; /* Center the × horizontally */
  cursor: pointer;
  transition: all 0.2s ease;
}


/* RESPONSIVE DESIGN */
@media (max-width: 460px) {
  /* Hide the text descriptions of the file action buttons */
  .file-actions button span {
    display: none;
  }

  /* Enlarge the chat container on mobile */
  .chat-container {
    margin: 0;
    width: 100dvw;
    height: 100dvh;
  }

  /* Reduce the font size of the title on mobile */
  /* Also, add a gap between the title and the details */
  .chat-header h1 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
  }

  /* Increase the size of the modals on mobile */
  .modal-content {
    width: 90%;
  }
}

@media (max-height: 720px) {
  /* Enlarge the chat container on small screens */
  .chat-container {
    margin: 0;
    width: 100dvw;
    height: 100dvh;
  }

  /* Reduce the font size of the title */
  .chat-header h1 {
    font-size: 1.4rem;
  }

  /* Increase the size of the modals */
  .modal-content {
    width: 90%;
  }
}

@media (min-width: 460px) {
  details {
    display: block;
  }
  details[open] {
    display: block;
  }
  details summary {
    display: none;
  }
}