.video-bot{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 0 5rem;
  gap: 4rem;
}
.video-bot .video-generate
{
  width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}
.video-bot #chatbot-container
{
  height: 50dvh;
  border:1px solid #4a78dd;
  display: flex;
  align-items: end;
  padding-bottom: 1.2rem;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-height: 600px;
}
#chatbot-container .header-chat
{
  align-self: flex-start;
  padding: 1.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 1px solid #212934;
  padding-bottom: 30px;
}
#chatbot-container .header-chat .digibot-svg
{
  background-color: #4a78dd;
  border-radius: 50%;
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#chatbot-container .header-chat :last-child h2
{
margin-bottom: 10px;
}
#chatbot-container #chatbot-messages
{
  height: 100%;
  width: 100%;
  padding: 0 1.2rem;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
}
#chatbot-container #chatbot-messages .message .avatar
{
  background-color: #4a78dd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0.4rem;
  width: fit-content;
}
#chatbot-container #chatbot-messages .message.right
{
  align-self: flex-end;
}
.video-bot #chatbot-container .chatbot-input
{
  display: flex;
  gap: 1.2rem;
  align-items: center;
  width: 100%;
  padding: 0 1.2rem;
}
.video-bot #chatbot-container .chatbot-send
{
  border-radius: 50%;
  background-color: #4a78dd;
  color: #fff;
  border: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}