/* Styles personnalisés pour le Bot SETRANS */

#setrans-bot-container * {
    box-sizing: border-box;
}

#setrans-bot-window.active {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Scrollbar invisible pour les suggestions de boutons */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Bulles de Chat */
.bot-msg, .user-msg {
    max-width: 80%;
    font-size: 13px;
    line-height: 1.5;
    animation: bubble-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bubble-up {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Animation des petits points qui écrivent (...) */
.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #64748b;
    border-radius: 50%;
    display: inline-block;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}