#chat-body::-webkit-scrollbar {
    width: 6px;
    cursor: pointer;
}
  
#chat-body::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235 var(--bg-opacity));
    cursor: pointer;
}
  
#chat-body::-webkit-scrollbar-thumb {
    cursor: pointer;
    background-color: #a0aec0;
}

@keyframes blink { 50% { fill: transparent }}
.dot { 
  animation: 1s blink infinite;
  fill: #34B44A;
}
.dot:nth-child(2) { animation-delay: 250ms }
.dot:nth-child(3) { animation-delay: 500ms }

.loader {
  color: #34B44A;
}