#chat-window * {
  font-size: 14px;
  z-index: 99999;
}
#chat-window button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
}
#chatbot-button {
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  z-index: 1000;
}
#chatbot-button button {
  background-color: transparent; 
  color: white; 
  border: none; 
  font-size: 26px;
  margin: 0;
  padding: 0;
}
#chatbot-button .chatbot-icon {
  background:no-repeat url("chatbot.svg");
  width: 60px;
  height: 60px;
  display: block;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); 
  border-radius: 50%;
}
#chat-window {
  display: none; 
  position: fixed; 
  bottom: 90px; 
  right: 20px; 
  width: 300px; 
  height: 400px; 
  background: white; 
  border-radius: 8px; 
  border: solid 1px #C9C9C9;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); 
  flex-direction: column; 
  font-family: Arial, sans-serif;
}
#chat-window-header {
  padding: 16px 12px 0;
  background-color: transparent; 
  color: #BE0411;  
  font-weight: bold;
}
#chat-window-header .chat-close {
  color: #5B5B5B;
  float: right;
}
#chat-window-header hr {
  border-bottom: solid 1px #C9C9C9;
  width: 100%;
  margin: 12px 0;
}
#chat-window form {
  display: flex; 
  border-top: 1px solid #C9C9C9;
}
#chat-window #chat-messages {
  flex: 1; 
  padding: 12px; 
  overflow-y: auto; 
}
#chat-window input {
  flex: 1; 
  padding: 12px; 
  border: none; 
  color: #5B5B5B;
  background-color: transparent;
}
#chat-window button[type="submit"] {
  margin-left: 5px; 
  padding: 12px 16px; 
  font-size: 10px;
  color: #5B5B5B;
}
#chat-window #chat-messages > div {
  padding: 12px 10px;
  max-width: 87%;
  line-height: 1.2em;
}
#chat-window #chat-messages .bot {
  background-color: #BD0311;
  color: #ffffff;
  border-radius: 0px 8px 8px 8px; 
  float: left;
}
#chat-window #chat-messages .human {
  background-color: #F1F1F1;
  color: #5B5B5B;
  border-radius: 8px 8px 0px 8px; 
  float: right;
}
#chat-window #chat-messages .time {
  font-size: 10px;
  width: 100%;
  max-width: 100%;
  clear: both;
  padding: 5px 0 0 14px;
  margin: 0 0 16px ;
}
#chat-window #chat-messages .time-left {
  text-align: left;
}
#chat-window #chat-messages .time-right {
  text-align: right;
}