.main-container {
  padding: 0px;
}

.chat-embed-container {
  width: 100%;
  height: 74vh;
  border: 1px solid #ccc;
  border-radius: 2px;
  overflow: hidden;
}

/* Mobile overrides */
@media (max-width: 576px) {
  .chat-embed-container {
    height: 85vh;
    border-radius: 0;
    padding: 0;
    border: none;
  }

  #newChatBtn {
    margin-top: .5rem;
  }

  .flex-nowrap {
    flex-wrap: wrap !important;
  }

  /* Fix wrapping of label/select/button row */
  .row.g-2.align-items-center.flex-nowrap>.col-auto,
  .row.g-2.align-items-center.flex-nowrap>.col {
    flex: 1 1 100%;
  }

  #continueBtn {
    width: 100%;
    margin-top: .5rem;
  }
}

@media (min-width: 577px) {
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
}

.thoughtspot-spinner {
  display: none;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #5B1400;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden-container {
  visibility: hidden;
  min-height: 70vh;
}

.custom-footer {
  font-size: 0.9rem;
  color: #5B1400;
  margin-top: 1rem;
  margin-bottom: 0;
}

.error-banner {
  display: none;
  color: red;
}

.chatbot-container {
  padding: 5px;
}

.beta-badge {
  font-size: 1rem;
  padding: 0.25em 0.45em;
}

.tooltip-inner {
  white-space: normal;
  word-break: keep-all;
  max-width: 300px;
}

/* Feedback */
.feedback-text {
  color: #555;
}

.feedback-link {
  color: #5B1400;
  font-weight: 700;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.feedback-link:hover {
  color: #A55200;
  text-decoration: underline;
}

.feedback-link i {
  margin-right: 4px;
  color: #5B1400;
  font-size: 0.9rem;
  vertical-align: middle;
}

/* Intro Video Modal */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.modal-header {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.modal-body {
  background-color: #fff;
}

.modal-footer {
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

#dontShowAgain {
  transform: scale(1.4);
  margin-right: 6px;
}

label[for="dontShowAgain"] {
  font-size: 1rem;
  font-weight: 500;
  user-select: none;
}