.chatbot {
    position: fixed;
    display: none;
    right: 1.5%;
    bottom: 20px;
    width: 510px;  /*Adjust as needed*/
    height: 508px; /* Adjust as needed */
    z-index: 2002;
    box-sizing: border-box;
}

.chatbot .header {
    width: 510px;
    height: 38px;
    padding: 0 13px;
    background-color: rgb(11, 85, 106);
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    gap: 20px;
    
  }

  .chatbot .header .heading{
    font-family: "Segoe UI";
    font-weight: 600;
    font-size: 18px;
  }
  
  .chatbot .header .minimize{
    width: 18px;
    height: 18px;
    position: relative;
    justify-self: end;
  }
  
  .chatbot .header .minimize .minimize-icon{
    background-color: #fff;
    width: 80%; 
    height: 2px; 
    top: 50%;
    bottom: 50%;
    position: absolute;
    left:10%;
    background-color: #fff
  }
  
  .chatbot .webchat{
    width: 510px;
    height: 470px;
    font-size: 14px;

  }

  .chatbot .webchat p{
    font-size: 14px;
    line-height: 20px;
    font-family: 'Calibri', 'Helvetica Neue', 'Arial', 'sans-serif';
}

.chatbot .webchat li{
    font-size: 14px;
}

.chatbot .webchat input[type="text"]{
    margin:0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;

} 
.minimize:hover {
  background-color: #2e788f;
}

#chatbot + div.help-icon {
  margin: 0;
  position: fixed;
  padding:8px 16px;
  bottom: 35px;  /*Adjust as needed */
  right: 95px;
  z-index: 999; /* Ensure it's above other content */
  -webkit-box-shadow: 0px 0px 82px -42px rgba(0, 0, 0, 0.74);
  -moz-box-shadow: 0px 0px 82px -42px rgba(0, 0, 0, 0.74);
  box-shadow: 0px 0px 82px -42px rgba(0, 0, 0, 0.74);
}

