File size: 1,277 Bytes
a7bdf7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55dffe2
 
 
 
 
 
 
 
 
 
 
 
 
a7bdf7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3daa86b
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  color-scheme: dark;
}

body {
  @apply bg-[#020617] text-slate-100 antialiased;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* Apply smooth transitions to theme-affected properties */
:root {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body {
  @apply transition-colors duration-300 ease-in-out;
}

/* Prevent transitions on page load to avoid "flash" */
.preload * {
  transition: none !important;
}
/* Optimized scrollbar for the Clinical Terminal */
.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  @apply bg-transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  @apply bg-slate-800 rounded-full hover:bg-slate-700 transition-colors;
}

/* Transition for view switching */
.view-enter {
  @apply opacity-0 translate-y-2;
}

.view-enter-active {
  @apply opacity-100 translate-y-0 transition-all duration-500 ease-out;
}

/* Typography refinements for Clinical Data */
h1, h2, h3 {
  @apply tracking-tighter italic font-black uppercase;
}

.mono-label {
  @apply font-mono text-[10px] uppercase tracking-[0.2em] text-slate-500;
}