body {
  font-family: 'Inter',sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  text-align: center;
}

.pre-quiz-box:hover {
  border: 1px solid #b5ebcb !important;
}

#send_message img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

#send_message {
  background-color: rgb(11 190 83 / var(--tw-bg-opacity, 1)) !important;
}

.message-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  max-width: 56rem;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.chat-loader {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-loader img {
  width: 24px;
  height: 24px;
}

.chat-loader-text {
  font-size: 14px;
  font-weight: 500;
  color: #16a34a;
  letter-spacing: 0.05em;
  min-width: 350px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.chat-loader-text.fade-out {
  opacity: 0;
}

.chat-loader.dots {
  width: 40px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #0bbe53 90%, #0000);
  background:
    var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100% / 3) 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}