*{

    box-sizing: border-box;
    font-family: 'Poppins',sans-serif !important;
}

#chatbotToggle{
  position: fixed;
      bottom: 20px;
      right: 20px;
      border: none !important;
          background: transparent;
}
#chatbotToggle img{
         width: 75px;
 }

 #chatbotContainer {
      position: fixed;
      bottom: 95px;
      right: 20px;
      width: 450px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgb(0 0 0 / 0.2);
      display: none;
      flex-direction: column;
      font-family: Arial, sans-serif;
      z-index: 1100;
    }

    .chatHeader {
      background: #fff;
      color: #707070;
      padding: 8px 16px;
      font-weight: 600;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 3px 6px #00000029;
    }  
   
.user-icn-bx p {
    font-size: 14px;
   color: #4B2300;
}
.user-icn-bx p a{
   color: #4B2300 !important; 
   font-weight: 600;
}

  .chat{
    background: #FBCFD0;
border-radius: 25px 25px 25px 0px;
}

.chat_body{
    height: 135px;
    overflow-y: scroll;
}
/* scroller_section */
::-webkit-scrollbar {
  width: 4px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}