
#biz-chat-form .chat-loading {
    color: #00AFB5;
    padding: 1rem;
    text-align: center;
  }
    
  #biz-chat-form .chat-error {
    color: #dc3545;
    padding: 1rem;
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: 8px;
  }
  
  #biz-chat-form .debug {
    font-size: 0.8rem;
    background: #f1f1f1;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
  }
  
  #biz-chat-form .chat-response {
    background-color: lightyellow;
    padding: 8px 16px;
    border: 10px solid #e8f0fe;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 8px;
    outline: 1px solid #ccc;
    -webkit-box-shadow: inset 0 0 5px rgba(51, 44, 51, 0.1);
    -moz-box-shadow: inset 0 0 5px rgba(51, 44, 51, 0.1);
    box-shadow: inset 0 0 5px rgba(51, 44, 51, 0.1);
}
  
  #biz-chat-form .chat-response a {
    color: #0074cc;
    text-decoration: underline;
    font-weight: bold;
  }
  #biz-chat-form.chat-response em {
    color: #666;
  }
  #biz-chat-form.chat-response p {
    margin-bottom: 8px;
  }
  #biz-chat-form .chat-response hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 12px 0;
  }
  #biz-chat-form .biz-chat-query {
    padding: 50px 8px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  #biz-chat-form .biz-chat-submit {
    padding: 8px 16px;
    background-color: #CD5909;
    border: none;
    color: white;
    border-radius: 4px;
    font-weight: bold;
  }
  .biz-chat-info {
    background: #f3faef;
    border: 1px solid #c9e1bd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #325e1c;
   /* border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
    box-shadow: -7px 0 0 #77b259;*/
}
  
  .biz-chat-info p {
    margin: 16px 0;
  }
.biz-chat-info p strong {
  font-size: clamp(1.25rem, 0.9853rem + 1.3235vw, 1.8125rem);
}
.biz-chat-header {
  text-align: center;
  margin-bottom: 2rem;
}

.biz-chat-bot-icon-container {
  display: inline-block;
  width: 120px;
  height: auto;
  animation: botIntro 1.2s ease-out forwards;
}

.biz-chat-bot-icon-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.15));
}

@keyframes botIntro {
  0% {
    transform: scale(0.6) rotate(-5deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.biz-chat-bot-icon-container svg {
  width: 120px;
  height: auto;
  animation: pulse 2.5s infinite ease-in-out;
  display: block;
  margin: 0 auto 1rem auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}



