#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;  /* ✅ Caché par défaut */
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

#chat-header {
    background: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

#close-chat {
    float: right;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}




#chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

#chat-input {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 5px;
}

#chat-input input {
    flex: 1;
    padding: 5px;
    border: none;
}

#send-btn {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
}

#open-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
}
