/* Taille et centrage du modal */
.modal-dialog {
    max-width: 50%;
}

.chatbox {
    max-height: 400px; /* Hauteur maximale pour la boîte de chat */
    overflow-y: auto;
    padding: 10px;
}

.chat-history {
    max-height: 300px; /* Hauteur de l'historique des messages */
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.chat-input {
    display: flex;
    align-items: center;
}

.chatbot-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Bouton d'envoi dans le chat */
.chat-input button {
    height: 40px;
}
