<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.chatbot-ask-block {
  background-color: #e2eef1;
  padding: 3rem 2rem;
  border-radius: 12px;
}

.chatbot-ask-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.chatbot-card-flex {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}

.chatbot-card-logo {
  display: flex;
  /* width: 200px; */
  max-width: 300px;
  /* max-height: 300px; */
  height: auto;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  flex: 1 1 200px;

}

.logo-wrapper {
  
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;

}

.chatbot-card-logo img {
  width: auto;
  height: 200px;
  object-fit: contain;
  display: block;

}

#submit-loading {
  
  height: 350px;
  object-fit: cover;
  object-position: center;
  
  display: block;

}

#logo-icon {
  width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.chatbot-ask-card {
  
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  flex: 1;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  min-width: 250px;
}

.chatbot-card-content {
  flex: 1;
  min-width: 200px;
  padding-top: 2.5rem;
}

/* .chatbot-ask-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #316370;
  margin-bottom: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
} */

.chatbot-ask-text a {
  font-size: 1.2rem !important;
  font-weight: 550px; 
  color: rgb(49, 99, 112) !important;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important; */
}

.chatbot-ask-text a:hover {
  
  color: rgb(49, 99, 112, .77) !important;
}


.chatbot-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-top: 3rem;
}

.chatbot-form input[type="text"] {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.chatbot-send-btn {
  background: transparent;
  border: none;
  padding-bottom: .7rem;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* appearance: none;
  -webkit-appearance: none; */
}

.chatbot-send-btn img {

  height: 60px;
}

.chatbot-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
}

.chatbot-actions img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.2s;
  cursor: pointer;
}

.chatbot-actions img:hover {
  opacity: 1;
}

.chatbot-citations a {
  overflow-wrap: anywhere;
  word-break: normal;
  display: inline-block;
  max-width: 100%;
}

.chatbot-citations ul {
  padding-left: 1.2rem; 
  word-break: break-word;
  list-style: none;
}

.chatbot-feedback {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: .5em;
  margin-bottom: 2em;
  font-size: 0.95rem;
  color: #444;
}

.feedback-buttons {
  display: flex;
  gap: 10px;
}

.thumb-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #888;
  transition: transform 0.2s ease, color 0.2s;
}

.thumb-button:hover {
  transform: scale(1.2);
  color: #333;
}

.thumb-button.active {
  color: #000000;
}

.thumb-button.thumb-down.active {
  color: #000000;
}


.chatbot-loading:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}




/* Mobile layout tweaks */
@media (max-width: 991px) {
  .chatbot-ask-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  #submit-loading {
    
    height: 150px;
    object-fit: cover;
    object-position: center;
    
    display: block;

  }

  .chatbot-card-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .chatbot-card-logo img {
    max-width: 150px;
  }

  .chatbot-ask-card {
    width: 100%;
  }
  
  .chatbot-card-content {
    width: 100%;
  }
}
</pre></body></html>