body {
  flex: 1;
  overflow-y: auto;
  background-color: black;
  color: grey;
  margin-inline-end: auto;
  font-family: Verdana, sans-serif;
  padding-top: 100px;
}

.container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

body,
html {
  height: 100%;
}

.center-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  height: 100vh;
  padding: 1rem;
}

.header-text {
  font-size: 1.75rem;
  font-weight: normal;
}

.overview-text {
  max-width: 350px;
  line-height: 1.5rem;
  margin: 0 auto;
  opacity: 0.5;
  padding: 5px;
}

.floating-form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-box {
  border: 1px solid white;
  border-radius: 1rem;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.bottom-form-box {
  border: 1px solid white;
  border-radius: 1rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.chat-input {
  width: 100%;
  border: none;
  background: none;
  padding: 0.5rem;
  font-size: 1rem;
  resize: none;
  overflow: hidden;
  color: white;
}

.chat-input:focus {
  outline: none;
}

.bottom-section {
  position: fixed;
  bottom: 25px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: black;
}

.bottom-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-form-box {
  border: 1px solid white;
  border-radius: 1rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  gap: 0.5rem;
}

.disclaimer {
  width: 100%;
  max-width: 800px;
  text-align: center;
  font-size: 0.8rem;
  padding-bottom: 1rem;
  color: #aaa;
}

.arrow-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0.5rem;
}

.arrow-btn:hover {
  color: grey;
  transform: translateX(4px);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.page {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 160px;
}

.chat-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.chat-wrapper {
  width: 100%;
  max-width: 780px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.message-bot {
  align-self: flex-start;
}

.message-user {
  align-self: flex-end;
}

.navbar {
  height: 51.3px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.value-header-text {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  word-wrap: break-word;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.nav-links a:hover {
  text-decoration: underline;
  color: grey;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: black;
}

.footer-text {
  color: grey;
}

.loader {
  display: flex;
  gap: 5px;
  margin-bottom: 0.25rem;
}

.loader div {
  width: 10px;
  height: 10px;
  background: grey;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.loader div:nth-child(2) {
  animation-delay: 0.2s;
}
.loader div:nth-child(3) {
  animation-delay: 0.4s;
}

.loader-label {
  font-size: 0.8rem;
  color: grey;
  margin-bottom: 0.5rem;
}

@keyframes bounce {
  to {
    transform: translateY(-15px);
  }
}

[hidden] {
  display: none;
}

.help-btn {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  background-color: black;
  color: white;
}

.help-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.help-modal.hidden {
  display: none;
}

.help-content ul {
  margin: 10px 0;
  padding-left: 20px;
  /* list-style-type:none; */
}

.help-content button {
  margin-top: 15px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  background-color: black;
  color: white;
}
