
@media only screen {.preview-mode-theme-mismatch-warning {display: none !important;}
}

/* Custom Scrollbar for the Chat */
#messages::-webkit-scrollbar { width: 4px; }
#messages::-webkit-scrollbar-track { background: #f1f1f1; }
#messages::-webkit-scrollbar-thumb { background: #ffd700; border-radius: 10px; }

/* Bot Response Formatting */
.bot-response p { margin: 0 0 12px 0; }
.bot-response p:last-child { margin-bottom: 0; }
.bot-response ul { margin: 8px 0 12px 20px; padding: 0; list-style-type: disc; }
.bot-response li { margin-bottom: 6px; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

#chat-bubble:hover { transform: scale(1.1); transition: 0.3s; }