File size: 1,152 Bytes
065d164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
987ec04
 
065d164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --background: #ffffff;
  --foreground: #171717;
  --primary: #217BFE;
  --secondary: #AC87EB;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #ffffff;
    --foreground: #171717;
  }
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
}

/* Minimal thought bubble styling */
.thought-bubble {
  position: absolute;
  animation: fadeIn 0.3s ease-in-out;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  height: auto;
  pointer-events: none;
  max-width: 100%;
}

.thought-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .thought-bubble {
    min-height: 30px;
  }
  
  .thought-bubble p {
    font-size: 12px;
    line-height: 1.3;
  }
}