tmdeptrai3012's picture
deploy 2025-08-08 09:57:49
0a9d3ef verified
raw
history blame contribute delete
999 Bytes
.thinking-block {
background-color: #f3f4f6;
border-left: 4px solid #8b5cf6;
padding: 8px;
margin-bottom: 8px;
font-family: monospace;
white-space: pre-wrap;
color: #374151;
}
.dropzone {
border: 2px dashed #cbd5e0;
transition: all 0.3s ease;
}
.dropzone.active {
border-color: #4f46e5;
background-color: #eef2ff;
}
.chat-message {
max-width: 80%;
}
.user-message {
background-color: #4f46e5;
color: white;
border-radius: 1rem 1rem 0 1rem;
}
.bot-message {
background-color: #f3f4f6;
border-radius: 1rem 1rem 1rem 0;
}
.status-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.slide-in {
animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
from {
transform: translateY(20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}