/* Real Planning CRM custom styles */
.chat-bubble-in {
  background: #f3f4f6;
  border-radius: 12px 12px 12px 4px;
}
.chat-bubble-out {
  background: #dbeafe;
  border-radius: 12px 12px 4px 12px;
}
.status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.lead-card:hover {
  background-color: #f9fafb;
}
.lead-card.active {
  background-color: #eff6ff;
  border-left: 4px solid #3b82f6;
}
.pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #4b5563;
  cursor: pointer;
}
.sidebar-link:hover {
  background: #f3f4f6;
  color: #111827;
}
.sidebar-link.active {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
}
.template-card {
  cursor: pointer;
  transition: transform 0.1s;
}
.template-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.file-item {
  cursor: pointer;
}
.file-item:hover {
  background: #f3f4f6;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: white;
  border-radius: 0.75rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}
