/* This CSS rule sets the default font size of the entire document */
html {
  font-size: 16px;
}

/* Changes the color of the new message indicator */
.bpw-new-messages-indicator {
  background-color: #0000009C;
  color: #0ADAFE;
  position: fixed;
  z-index: 9999; /* Ensure a high value to be on top of other items */

 }
/* This rule changes the color of the text in the input message */
#input-message {
  color: #ffffff;
}

.bpw-header-unread {
    background-color: #0000009C;
    border-radius: 20%;
    color: #0ADAFE;
    display: inline-block;
    font-size: .75rem;
    height: 20px;
    line-height: 20px;
    margin-left: 8px;
    text-align: center;
    vertical-align: middle;
    width: 20px;
    font-size: 16px;
    }
    
/* Styling for the chat header container */
.bpw-header-container {
  margin: 9px;
  background: #0000009C;
  border-radius: 29px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: solid 1px;
  border-color: #0ADAFE
}

.bpw-header-name{
  color: #0ADAFE;
}

/* Styling for the typing bubble */
.bpw-typing-bubble {
  background-color: rgba(0, 0, 0, 0.611764705882353);
}

/* Styling for the chat bubble content */
.bpw-chat-bubble-content {
  background-color: #0ADAFE;
  border-radius: 3px;
  border: 1px solid;
}

/* Styling for the date container, header name, and header subtitle */
.bpw-date-container,
.bpw-header-name,
.bpw-header-subtitle {
  color: #0ADAFE;
}

/* Styling for the layout of the chat bubble. Width, height, border, position and radius of the chat bubble */
.bpw-layout {
  width: 450px !important;
  height: 100vh;
  border-radius: 10px;
  border: solid 1px;
  border-color: #0ADAFE
  }

.bpw-card-container {
  background-color: #0000009C; 
}
.bpw-card-title {
  color: #0ADAFE;
}
.bpw-card-subtitle {
  color: White;
  }
  .bpw-card-action {
  background-color: #0000009C;
  color: #0ADAFE;
  border-radius: 10px;
  border: solid 1px;
  border-color: #0ADAFE;
  }
/* Responsive design rules for devices with width less than or equal to 767px */
@media screen and (max-device-width: 767px) {
  .bpw-layout {
    width: 100% !important;
    height: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}

/* Changes the fill color of the header icons to white */
.bpw-header-icon,
.bpw-header-icon svg,
.bpw-header-icon svg path {
  fill: #ffffff !important;
}
/* Changes the color of the placeholder text in the input message */
#input-message::placeholder {
  color: #0ADAFE;
  
}

.bpw-composer textarea{
  outline: none !important;
  border: 1px solid #0ADAFE;
}
.bpw-composer textarea:focus{
  outline: none !important;
  border: 1px solid #ffffff;
}

/* Styling for the keyboard single choice option */
.bpw-keyboard-single-choice {
  background-color: rgba(0, 0, 0, 0.611764705882353);
  border: none;
}

/* Styling for the buttons in the chat interface */
.bpw-button,
.bpw-button-alt {
  background-color: #0000009C;
  color: #0ADAFE;
  border-radius: 10px;
  border: solid 1px;
  border-color: #0ADAFE;
}


/* Styling for hover effect on the buttons in the chat interface */
.bpw-button:hover,
.bpw-button-alt:hover {
  background-color: #0ADAFE;
  color: #000000;
  border: solid 1px;
  border-color: #ffff;
}


/* Styling for hyperlinks in the chat interface */
a {
  color: #ffffff;
  text-decoration: underline;
}

/* Styling for the chat container, including color, scrollbar width and color, and border */
.bpw-chat-container {
background-image: url("https://www.thisislandlife.com/wp-content/uploads/2018/04/raffles-praslin-seychelles-laura-mcwhinnie-this-island-life-aloe-swimwear-shona-joy-resort-wear-wm-7.jpg");
background-position: center;
z-index: 1;

}
/* Styling for the chat bubble content when it's from the bot */
.bpw-from-bot .bpw-chat-bubble .bpw-chat-bubble-content {
  background-color: rgba(0, 0, 0, 0.611764705882353);
  color: #ffffff;
  border-radius: 10px;
  border: solid 1px;
  border-color: #0ADAFE;
}

/* Styling for the chat bubble content when it's from the user */
.bpw-from-user .bpw-chat-bubble .bpw-chat-bubble-content {
  background-color: rgba(0, 0, 0, 0.611764705882353);
  color: #0ADAFE;
    border-radius: 10px;
  border: solid 1px;
  border-color: #ffff;
}

/* Styling for the composer section of the chat interface */
.bpw-composer {
  background-color: rgba(0, 0, 0, 0.611764705882353);
  border: none;
}


/* Styling for the scrollbar in the chat container */
.bpw-chat-container::-webkit-scrollbar,
.bpw-chat-container::-moz-scrollbar {
  width: 10px;
  background-color: rgba(0, 0, 0, 0.611764705882353);
  border: none;
}

/* Styling for the avatar of the bot */
.bpw-bot-avatar img,
.bpw-bot-avatar svg {
  background: #0000009C;
  border: 1px solid #0ADAFE;
}
/* Styling for the avatar of the user */
.bpw-user-avatar img,
.bpw-user-avatar svg {
  background: #0000009C;
  border: 1px solid #0ADAFE;
}
/* Styling for the general scrollbar in the web page */
::-webkit-scrollbar {
  width: 0.5rem;
}

/* Styling for the track of the general scrollbar and the chat container scrollbar */
::-webkit-scrollbar-track,
.bpw-chat-container::-webkit-scrollbar-track,
.bpw-chat-container::-moz-scrollbar-track {
  background-color: #0ADAFE;
}

/* Styling for the thumb of the general scrollbar and the chat container scrollbar */
::-webkit-scrollbar-thumb,
.bpw-chat-container::-webkit-scrollbar-thumb,
.bpw-chat-container::-moz-scrollbar-thumb {
  background-color: #0ADAFE;
  border-radius: 1rem;
  border: 0.5rem solid #0ADAFE;
}

/* Styling for the floating button icon in the chat interface */
.bpw-floating-button i svg path {
  fill: #4e2d18;
}

.bpw-send-button{
  background: #0000009C;
  icon-color: #0ADAFE;
}


/* Change Bot Widget Icon */

.bpw-widget-btn{
  border-radius: 50%;
  background:none;
}

.bpw-floating-button::before {
background:url(https://media.discordapp.net/attachments/1218934879014879243/1223549050301714453/DALLE_2024-03-30_15.26.53_-_Revise_the_icon_for_a_guest_house_AI_assistant_to_incorporate_a_color_palette_of_brown_black_and_white_maintaining_the_friendly_and_welcoming_essen.webp?ex=661a41da&is=6607ccda&hm=baf2eb8e72132f5effee971612e6ed8e237271b705bdb9338a8317f5aa5ef493&=&format=webp&width=607&height=607);
background-repeat: no-repeat;
  background-position: center;
background-size: contain;
height:undefinedpx !important;
width:undefinedpx !important;
}

.bpw-floating-button {
  box-shadow: none !important;
}

.bpw-floating-button:hover {
  box-shadow: none !important;
}

// .bpw-floating-button > i {
// display: none;
}
/* Changes hyperlink colors in the carousel */
.bp-carousel a {
  hyperlink: #4e2d18;
  }
  .bpw-message-container, .bpw-message-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 96%;
// .bpw-floating-button > i {
// display: none;
}