/* Bouton flottant */
#edigio-launcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: #0A1AFF;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}

/* Fenêtre chatbot */
#edigio-bot {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Header */
#edigio-header {
  background: #0A1AFF;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
}

#edigio-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Messages */
#edigio-messages {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
}

.bot {
  background: #f1f1f1;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 14px;
}

.user {
  background: #0A1AFF;
  color: #fff;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-align: right;
  font-size: 14px;
}

/* Input */
#edigio-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#edigio-input input {
  flex: 1;
  border: none;
  padding: 10px;
}

#edigio-input button {
  background: #0A1AFF;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
