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

/* Custom Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Message styling */
.user-message {
    @apply ml-auto max-w-[85%] sm:max-w-[75%];
}

.assistant-message {
    @apply max-w-[85%] sm:max-w-[75%];
}

/* Status bar colors */
#status-bar.success {
    @apply bg-green-500;
}

#status-bar.error {
    @apply bg-red-500;
}

#status-bar.loading {
    @apply bg-blue-500;
}

/* Animation for typing indicator */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .user-message, .assistant-message {
        @apply max-w-full;
    }
    
    #example-prompts .grid {
        @apply grid-cols-1;
    }
    
    footer .flex-col {
        @apply gap-2;
    }
    
    footer button {
        @apply w-full justify-center;
    }
}