/* Custom styles beyond Tailwind */

/* Status badge colors */
.badge-new { background-color: #dbeafe; color: #1e40af; }
.badge-contacted { background-color: #fef3c7; color: #92400e; }
.badge-converted { background-color: #d1fae5; color: #065f46; }
.badge-lost { background-color: #f3f4f6; color: #4b5563; }

/* Smooth page load */
body {
  opacity: 0;
  animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Toast notifications */
.toast {
  transition: opacity 0.3s ease;
}

/* Chat bubbles */
.chat-inbound {
  background-color: #f3f4f6;
  border-radius: 0 12px 12px 12px;
}

.chat-outbound {
  background-color: #dcfce7;
  border-radius: 12px 0 12px 12px;
}
