* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cross {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: none;
}

.cross img {
  width: 20px;
  height: 20px;
}


.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.btnbot {
  border-radius: 60px;
  cursor: pointer;
  z-index: 20;
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 50px;
  height: 50px;
}

.btnbot img{
  width: 100%;
  height: 100%;
}

.popupbotwon{
  border: 1px solid #1d1d1d;
  display: flex;
  flex-direction: row;
}

.popupbotwon input {
  border: none;
  width: 100%;
  padding: 10px;
}

.popupbotwon button {
  border: none;
  background-color: #61acca;
  width: 100%;
  cursor: pointer;
}

/* Style pour la div qui affiche les messages */
#messages {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  justify-content: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user {
  background-color: rgba(0, 255, 0, 0.20);
}

.bot {
  background-color: rgba(0, 174, 255, 0.20);
}

