/* utility class to hide elements */
.hidden {
    display: none !important;
}

/* Custom scrollbar styling for better UX */
#chat-container::-webkit-scrollbar {
    width: 8px;
}

#chat-container::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

#chat-container::-webkit-scrollbar-thumb {
    background: #c1c1c1; 
    border-radius: 4px;
}

#chat-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8; 
}

/* Markdown styling within chat messages */
.chat-message p {
    margin-bottom: 0.5rem;
}

.chat-message ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}