/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
} */

/* .chatbot-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;

    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index:1000;
} */
.chat-icon1{
    max-width: 140px;
    max-height: 110px;
    bottom: 20px;
    right: 15px;
    position: fixed;
    cursor: pointer;
    z-index:1000;
}

.chatbot-form1 {
    position: fixed;
    bottom: 120px;
    right: 20px;
    max-width: 400px;
    max-height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    width: 30%;
    height: 70%;
    /* width: 30%; */
}

.hidden1 {
    display: none;
}

.chat-header1 {
    background-color:#221A67;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header1 .h3 {
    margin: 0;
    color: white;
}

#close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-messages1 {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    font-size:13px;
    color: rgb(0, 0, 0);
}

.quick-replies1 {
    display: flex;
    /* overflow: auto; */
    /* justify-content: space-between; */
    padding: 5px;
    flex-wrap: wrap;
}

.quick-reply-btn1 {
    background-color: #221a67 ;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    /* width: 100%; */
    max-width: 150px;
    margin: 4px;
    font-size: 14px;
    /* max-height: 0px; */
}

.quick-reply-btn1:hover {
    background-color: #221a6791;
}

@media (max-width: 1100px) {
    .chatbot-form1 {
      width: 40%;
    }
  }

  @media (max-width: 800px) {
    .chatbot-form1 {
      width: 50%;
    }
  }
  @media (max-width: 650px) {
    .chatbot-form1 {
      width: 70%;
    }
  }
  @media (max-width: 450px) {
    .chatbot-form1 {
      width: 90%;
    }
  }
