.full-width {
  width: 100%;
}

.top-nav {
  display: flex;
  width: 100%;
  height: 60px;
}

.nav-block {
  flex: 1; /* Equal width */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  position: relative;
  border-bottom: 3px solid #ffffff;
  cursor: pointer;
}

.nav-block1 {
  background-color: #f37a1f;
}
.nav-block2 {
  background-color: #f37a1f;
}
.nav-block3 {
  background-color: #f37a1f;
}

/* Add borders between blocks */
.nav-block:not(:last-child) {
  border-right: 3px solid white;
}

.nav-block:hover {
  opacity: 0.8;
}

.default-background-img {
  width: 100%;
}

.relative {
  position: relative;
}

.alert {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display: none;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.chat {
  display: flex;
  flex-direction: column;
  width: 83.4%;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  position: absolute;
  bottom: 89%;
  height: 160px;
  left: 50.4%;
  transform: translate(-50%, 0);
  padding: 14px 0;
  background-color: #ffffff;
  transition: height 1s, top 1s;

  -webkit-box-shadow: 0px 8px 15px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 15px 0 rgba(0, 0, 0, 0.2);
}

.chat.__focused {
  height: 10.8%;
  overflow-y: auto;
}

.chat.__focused .chat-header {
  opacity: 1;
  transition: opacity 0s 1s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.chat-header {
  display: none;
  opacity: 0;
  top: 0px;
  height: 80px;
  width: 100%;
  padding: 2px;
  position: absolute;
  background-color: #ededed;
  box-shadow: 0 2px 200px rgba(0, 0, 0, 0.15);
  z-index: 10;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.chat-header h2 {
  font-weight: bold;
  font-size: 20px;
}

.chat-helpers {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0 26px;
  opacity: 1;
  transition: opacity 1s, height 1s, margin-bottom 1s;
  height: 40px;
  overflow: hidden;
}

.chat.__focused .chat-helpers {
  opacity: 0;
  height: 0;
  margin-bottom: 2px;
}

.chat-list-value-btn {
  padding: 4px 20px;
  border-radius: 0px;
  background-color: #ffffff;
  color: #1f1f1f;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.chat-list-value-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.chat-form {
  display: flex;
  width: 100%;
  position: relative;
  padding: 0 26px;
  justify-content: space-between;
}

.chat-input {
  width: calc(100% - 296px);
  height: 66px;
  font-family: "Neutraface", sans-serif;
  background-color: transparent;
  font-weight: 400;
  font-size: 18px;
  padding: 2px 20px 2px 20px;
  outline: none;
  background-color: #ededed;
  border: 1px solid #ededed;
  transition: width 1s;
}

.chat.__focused .chat-input {
  width: calc(100% - 80px);
}

.chat-input::placeholder {
  color: #a1a1a1;
}

.chat-input:focus {
  border: 1px solid #f37a1f;
}

.chat-btn {
  right: 0px;
  height: 66px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 280px;
  transition: width 1s;
}

.chat.__focused .chat-btn {
  width: 64px;
}

.chat-btn:hover {
  background-color: #f37a1f;
}

.chat-btn:disabled {
  opacity: 0.4;
  background-color: #000000;
  cursor: not-allowed;
}

.chat-btn-icon {
  width: 32px;
  height: 32px;
}

.chat.__focused .chat-close-btn {
  opacity: 1;
  transition: opacity 0s 1s;
  display: block;
}

.chat-close-btn {
  cursor: pointer;
  display: block;
  height: 26px;
  padding: 2px;
  outline: none;
  border-radius: 4px;
  border: 1px solid transparent;
}

.chat-close-btn:hover {
  border-color: #000000;
}

.chat-close-btn img {
  width: 20px;
  height: 20px;
}

.chat-list {
  width: 100%;
  overflow: hidden;
  height: 0;
  transition: height 1s;
  padding: 0 26px;
}

.chat.__focused .chat-list {
  height: 749px;
  overflow: hidden auto;
  overscroll-behavior: contain;
}

.chat-message {
  display: block;
  padding: 20px 25px;
  background-color: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
  border-radius: 10px;
  margin: 20px auto;
  min-height: 35px;
  width: fit-content;
  min-width: 70px;
  max-width: 75%;
  white-space: pre-wrap;
  font-weight: 400;
  line-height: 26px;
}

.chat-message.__usual_white_space {
  white-space: normal;
}

.chat-message.__bot {
  border-radius: 20px 20px 20px 0px;
  margin: 20px auto 20px 0;
}

.chat-message.__user {
  border-radius: 20px 20px 0px 20px;
  margin: 20px 0 20px auto;
  border: none;
  background-color: #ededed;
}

.chat-message.__typing {
  width: 120px;
}

.chat-message a {
  color: inherit;
}

.chat-message:first-of-type {
  margin: 80px auto 20px 0;
}

.typing-loader {
  position: relative;
  left: 25px;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #000000, -20px 0 #949292;
    background: #000000;
  }
  33% {
    box-shadow: 20px 0 #000000, -20px 0 #949292;
    background: #949292;
  }
  66% {
    box-shadow: 20px 0 #949292, -20px 0 #000000;
    background: #949292;
  }
  100% {
    box-shadow: 20px 0 #949292, -20px 0 #000000;
    background: #000000;
  }
}

.banner {
  width: 83.4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: -14%;
  left: 50.4%;
  transform: translate(-50%, calc(100% + 30px));
  padding: 20px 30px;
  background-color: #f37a1f;
  cursor: pointer;
  color: #ffffff;

  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
}

.banner:hover {
  background-color: #dd9b5d;
  -webkit-box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.2);
}

.banner-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bold-font {
  font-weight: bold;
}

.chat_link {
  background-color: #ededed;
  padding: 4px 8px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}

.chat_link img {
  padding-right: 4px;
}

table, th, td {
  border: 1px solid black; /* border color and width */
  border-collapse: collapse; /* merges borders for clean look */
  padding: 8px; /* spacing inside cells */
}

thead {
  font-weight: bold;
}

.scroll-button {
  display: none;
  position: absolute;
  top: 70%;
  left: 90%;
  width: 32px;
  height: 32px;
  border: 1px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.scroll-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.scroll-button img {
  margin: 2px 0 0 2px;
  width: 20px;
  height: 20px;
  transform: rotate(135deg);
}