/* Animazione per agentInfoListChatDiv */

#agentInfoListChatDiv {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-10px);
}

#agentInfoListChatDiv.show {
  opacity: 1;
  transform: translateY(0);
}

#agentInfoListChatDiv.hide {
  opacity: 0;
  transform: translateY(-10px);
}

