File size: 1,961 Bytes
b42dfef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  color: #e5e5e7;
  background: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* Apple-style scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  border: 3px solid #1d1d1f;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-corner {
  background: #1d1d1f;
}

/* Markdown styling in chat - VS Code style */
.prose {
  max-width: none;
  color: #cccccc;
}

.prose code {
  background-color: #2d2d30;
  color: #d4d4d4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.875em;
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
}

.prose pre {
  background-color: #1e1e1e;
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  border: 1px solid #3e3e42;
}

.prose pre code {
  background-color: transparent;
  padding: 0;
}

.prose p {
  margin: 0.5em 0;
}

.prose a {
  color: #3794ff;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

/* Selection color - Apple style */
::selection {
  background-color: rgba(0, 122, 255, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background-color: rgba(0, 122, 255, 0.3);
  color: #ffffff;
}

/* Apple-style focus rings */
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(0, 122, 255, 0.6);
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}