#my-chatbot {
  position: fixed;
  bottom: 100px;
  right: 150px;
  z-index : 100;
}




.chatbot-toggle-button {
  position: fixed;
  bottom: 100px;
  right: 150px;
  z-index: 100;
  border: none;
  border-radius: 50%;
  background-color: #4caf50;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  
  
}



.chatbot-toggle-button:before {
  content: "\f086";
  font-family: FontAwesome;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot-toggle-button:hover {
  background-color: #45a049;
  padding: 20px;
}

.chatbot-toggle-button.open {
  background-color: #f44336;
}

.chatbot-toggle-button.open:before {
  content: "\f00d";
}

.chatbot-content {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  background-color: #f8f8f8;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 10px;
}

/* Chat container */
#my-chatbot .chat-container {
  padding: 10px;
  background-color: #fff;
}

 #my-chatbot .chat-message
{
    position: absolute;
    bottom: 30px;
    right: 47px;
    z-index: 1;
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    border-radius: 16px;
    padding: 10px 15px;
    box-shadow: rgba(0, 18, 46, 0.24) 0px 6px 32px 0px;
    background:  #36579e;

}

 #my-chatbot label
 {
    font-size: 20px;
    line-height: 20px;
    color: #000000;

 }

/* Chat messages */
#my-chatbot  .chat-messages {
  max-height: 200px;
  overflow-y: auto;
  font-size: 17px;
    line-height: 17px;
    color: #FF0000;
 
  
}

/* Chat input form */
#my-chatbot .chat-input-form {
  margin-top: 10px;
}

/* Chat input field */
#my-chatbot .chat-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Chat submit button */
#my-chatbot .chat-submit {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  background-color: #4caf50;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

/* Chat submit button hover effect */
#my-chatbot .chat-submit:hover {
  background-color: #45a049;
}


-----------------********-----------



.negative-message
{
    color: red;
}

.positive-message
{
    color: green;
    padding: 10px;
    margin:2px;
}


