/* chatBot/chatbot.css */

/* Pictogramme du chatbot */
#chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #26cdeb; /* Couleur de votre choix */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s;
}

#chatbot-icon:hover {
    background-color: #274c78;
}

/* Fenêtre de chat */
#chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: none; /* Caché par défaut */
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

#chatbot-header {
    background-color: #26cdeb;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header h4 {
    margin: 0;
    font-size: 16px;
}

#chatbot-close {
    cursor: pointer;
    font-size: 20px;
}

#chatbot-messages {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 10px;
}

.chat-message.user {
    text-align: right;
}

.chat-message.user .message {
    background-color: #26cdeb;
    color: white;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 15px;
}

.chat-message.bot .message {
    background-color: #f1f0f0;
    color: black;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 15px;
}

/* Styles pour les boutons d'options */
.chat-option {
    display: block;
    background-color: #e0e0e0;
    color: #000;
    padding: 10px 15px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}

.chat-option:hover {
    background-color: #d0d0d0;
}


#chatbot-input-area {
    display: flex;
    border-top: 1px solid #ccc;
}

#chatbot-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 0 0 0 10px;
    outline: none;
}

/* chatBot/chatbot.css */

/* chatBot/chatbot.css */

/* Bouton d'envoi */
#chatbot-send {
    padding: 10px 15px; /* Réduit le padding */
    background-color: #26cdeb;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 0 10px 0;
    transition: background-color 0.3s;
    display: flex; /* Ajouté pour centrer l'icône */
    justify-content: center;
    align-items: center;
}

#chatbot-send:hover {
    background-color: #f39c12;
}

/* Assurer la couleur et la taille de l'icône d'envoi */
#chatbot-send i {
    color: white; /* Couleur de l'icône */
    font-size: 20px; /* Taille de l'icône */
}


