/* IAStrategie360 — Styles custom */

/* Animation du curseur de streaming */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Scrollbar discrete */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

/* Textarea focus ring */
textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 196, 0.1);
}

/* Smooth transitions */
* {
  scroll-behavior: smooth;
}

/* Animation d'entree pour la reponse */
[x-show] {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
