/* Estilos adicionales personalizados para el panel de ventas */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.tab-content {
  animation: fadeIn 0.2s ease-in-out;
}

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

/* Chat bubble styles */
.chat-bubble-user {
  background-color: #ffffff;
  color: #1e293b;
  border-bottom-left-radius: 4px;
}

.chat-bubble-assistant {
  background-color: #0f766e;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
