body {
  background-color: #f8f8f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  color: #212529;
  text-align: left;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Set minimum height to full viewport height */
}
    .bot-name-container{
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
       display: flex;
    }
    .chat-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }
    .message-bubble {
      /*display: flex;*/
      align-items: center;
      margin-bottom: 10px;
      animation: fadeIn 1s;
    }
    @keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
    .message-avatar {
      margin-right: 10px;
    }
    .message-avatar img.avatar {
      border-radius: 50%;
      max-width: 50px;
    }
    .message-text {
      flex: 1;
      padding: 10px;
      border-radius: 10px;
      font-size: 16px;
      background-color: #fff;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }
    .message-bubble.bot .message-text {
      background-color: #d7e3f0;
    }
    .message-bubble.usr .message-text {
      background-color: #dcf8c6;
    }
    .message-time {
      font-size: 12px;
      margin-left: 10px;
    }

    .top-object {

  background-color: #f2f2f2;
}



.bot-info {
  text-align: left;
}

.bot-info h1 {
  font-size: 2em;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.bot-info p {
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  color: #9e9e9e;
  font-weight: 300;
}
.tasting-offer {
  background-color: #f2f2f2;
  padding: 20px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tasting-offer h2 {
  font-size: 2rem;
  margin: 0;
  padding: 0;
}

.tasting-offer p {
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 0;
}

.tasting-offer a {
  display: block;
  margin-top: 10px;
}

.fakechatbot-typing, .message-bubble { display: none; }

.fakechatbot-typing-active, .message-bubble-display { display: flex; }

/* footer */
footer {
  background-color: #f8f8f8;
  border-top: none;
  padding-bottom: 30px;
  color: #000;
  text-align: center;
  margin-top: auto; /* Push the footer to the bottom */
}

footer hr {
  border-bottom: 1px solid #666; /* Update border color for the hr */
}

footer a {
  color: #000;
  text-decoration: none;
}

footer a:hover {
  color: #5c5c5c;
  text-decoration: none;
}

footer h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}

