#sd-cmp {
  display: none !important;
}
.question-pending {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
}

.question-current {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
}

.question-completed {
  /* Le scale est géré dynamiquement via JavaScript */
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Masquer la scrollbar tout en conservant la fonctionnalité de scroll */
.scroll-container {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.assistant-widget::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.6) 40%,
    transparent 100%
  );
  top: 0;
  left: 0;
  z-index: 9;
  pointer-events: none;
}

.assistant-ui-question {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}
@media (max-width: 768px) {
  .assistant-ui-question {
    font-size: 24px;
  }
}

/* Styles personnalisés pour les toasts OCR */
.Toastify__toast.custom-ocr-toast {
  background: white !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  padding: 0 !important;
  min-height: 70px !important;
  border: 1px solid #e9ecef !important;
}

.Toastify__toast.custom-ocr-toast.Toastify__toast--success {
  background: white !important;
}

.Toastify__toast.custom-ocr-toast.Toastify__toast--error {
  background: white !important;
}

.Toastify__toast-body.custom-ocr-toast-body {
  padding: 12px 16px !important;
  margin: 0 !important;
  color: #212529 !important;
}

.Toastify__toast.custom-ocr-toast .Toastify__toast-icon {
  display: none !important;
}

.Toastify__toast.custom-ocr-toast .Toastify__close-button {
  color: #6c757d !important;
  opacity: 0.5 !important;
}

.Toastify__toast.custom-ocr-toast .Toastify__close-button:hover {
  opacity: 1 !important;
}
.btn.btn-primary {
  background: #4f46e5 !important;
}
.form-group {
}
.bg-purple {
  background-color: #4f46e5 !important;
}
.text-purple {
  color: #4f46e5 !important;
}
.border-purple {
  border-color: #4f46e5 !important;
}
