/* Target the avatar element */
.bpw-bot-avatar svg { 
  display: none; /* Hide the default avatar */
}

.bpw-bot-avatar { 
  background-image: url('https://www.mailhippo.com/wp-content/uploads/2024/10/MailHippo_40x40_bp.fw_.png'); /* Set your image as the background */
  background-size: cover; /* or 'contain' depending on how you want it to fit */
  background-repeat: no-repeat;
  background-position: center; 
  width: 40px;  /* Adjust size as needed */
  height: 40px; /* Adjust size as needed */
  border-radius: 50%; /* Make it circular if you want */
}


/* Header element */
.bpw-header-container {
  background-color: #E875AD !important;
}


/* Entire chat window */
.bpw-layout {
  max-height: 500px !important; 
}


/* Chat bubble */
div[data-from="Me"] .bpw-chat-bubble-content {
  background-color: #E875AD !important;
}


/* Send button */
.bpw-send-button {
  background-color: #E875AD !important;
}


/* Start convo widget button */
.bpw-widget-btn {
  background-color: #E875AD !important;
}


