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

/* Message styling */
.message {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
#chatMessages::-webkit-scrollbar {
  width: 6px;
}

#chatMessages::-webkit-scrollbar-track {
  background: #f3e8ff;
  border-radius: 10px;
}

#chatMessages::-webkit-scrollbar-thumb {
  background: #c084fc;
  border-radius: 10px;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
  background: #a855f7;
}

/* Input focus styling */
#messageInput:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #sidebar {
    height: 100vh;
    top: 0;
  }
  
  .message {
    max-width: 90%;
  }
}