File size: 796 Bytes
8a693e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* We are moving the styling to the HTML. 

   This file now only handles the visibility logic. */

.section {
    display: none; /* Hide all sections by default */
    animation: fadeIn 0.3s ease-in-out;
}

.section.active {
    display: block; /* Only show the active section */
}

/* Smooth fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar for chat */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}