body {
  font-family: "Open Sans", Arial, Verdana;
  background: url(https://d2urhn0mmik6is.cloudfront.net/site/biblestrong-ai/background1-min.jpg)
    center center;
  background-size: cover;
}

html,
body {
  height: 100dvh;
  margin: 0;
  overflow: hidden;
}

#tp_content {
  height: 100%;
}

#main-body {
  width: 100%;
}

.body-background {
  display: none;
  width: 100%;
  height: 100dvh;
  background: #000;
  opacity: 0;
  position: absolute;
}

.tp_overlay_bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(0, 15, 40);
  opacity: 0.9;
  z-index: 2;
}

.user-welcome {
  position: relative;
  color: #fff;
  font-size: 13px;
  line-height: 1.2em;
  overflow: hidden;
}
.iframe .signup-login-wrapper {
  display: none;
}

.signup-login-wrapper {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  top: 10px;
  right: 30px;
}

.signup-login-wrapper a {
  padding: 0.3rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: background 0.3s ease;
}

.btn-login {
  border: 2px solid #3773b0;
  background-color: #3773b0;
}

.btn-sign-up {
  background-color: transparent;
  border: 2px solid #3773b0;
  color: #3773b0;
}

.btn-sign-up:hover,
.btn-login:hover {
  background-color: #3773b0;
  color: white;
}
.btn-login:hover {
  opacity: 0.9;
}

.user-welcome-wrapper {
  flex-direction: column;
  position: relative;
  top: 10px;
}

.user-logged-in {
  position: absolute;
  right: 30px;
  display: flex;
  justify-content: flex-end;
}

.user-avatar {
  margin-left: 10px;
  cursor: pointer;
}

.letter-circle {
  display: block;
  background: linear-gradient(135deg, #2f5f93, #3773b0, #4b8ccd);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  width: 37px;
  height: 37px;
  line-height: 35px;
  border-radius: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

/* Sidebar Container */

.header-icon-container {
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  user-select: none;
  top: 10px;
  z-index: 20;
}

.header-icon-container i {
  font-size: 1.4rem;
  cursor: pointer;
  color: #3773b0;
  transition: color 0.2s ease;
}

.header-icon-container i:hover {
  color: #3773b0;
}

.layout-wrapper {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

#chat-sidebar {
  display: none;
  width: 200px;
  /* height: 100dvh;  */
  background-color: #282828;
  padding: 1rem;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: transform 0.3s ease;
  overflow: hidden;
}

/* .layout-wrapper.sidebar-open .main-container {
  margin-left: 250px;
  transition: margin-left 0.3s ease;
} */

.main-container.sidebar-open {
  margin-left: 250px;
  transition: margin-left 0.3s ease;
}

#sidebar-wrapper {
  height: 100%;
  display: flex;
  /* overflow: hidden; */
  flex-direction: column;
}

#sidebar-container {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  height: 94%;
  overflow: hidden;
}

/* New Chat Container */
#new-chat,
#new-chat-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #444;
  color: white;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: background 0.2s ease;
}

#new-chat:hover {
  background-color: #3773b0;
}

#chat-sidebar.open {
  transform: translateX(0);
  display: block !important;
}

#chat-search {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #666;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  background: #1e1e1e;
  color: #eee;
  box-sizing: border-box;
  outline-offset: 2px;
  transition: border-color 0.2s ease;
}

#chat-search:focus {
  border-color: #888;
  outline: none;
}

#threads-section {
  display: flex;
  flex-direction: column;
  padding: 5px;
  height: 90%;
  overflow-y: scroll;
  overflow-x: hidden;
}

#threads-section h3 {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#sidebar-container h2 {
  font-size: 15px;
  color: #fff;
}
#sidebar-container i {
  color: #fff;
}
#sidebar-container hr {
  width: 100%;
}

/* .pinned-threads-container {
  min-height: 30px;
  max-height: 300px;
  height: 100%;
} */

.ss-threads-container {
  max-height: 300px;
  height: 25%;
}

.ss-threads-title {
  height: 20px;
  width: 150px;
}

/* .threads-container {
  max-height: 700px;
  height: 75%;
} */

.threads-container,
.ss-threads-container,
.pinned-threads-container {
  list-style: none;
  padding: 0;
  /* margin: 0; */
  /* flex-grow: 1; */
  /* overflow-y: scroll; */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

.threads-container::-webkit-scrollbar,
.ss-threads-container::-webkit-scrollbar {
  width: 12px;
}

.threads-container::-webkit-scrollbar-thumb,
.ss-threads-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

.threads-container::-webkit-scrollbar-thumb:hover,
.ss-threads-container::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.threads-container::-webkit-scrollbar-track,
.ss-threads-container::-webkit-scrollbar-track {
  background: transparent;
}

.threads-container::-webkit-scrollbar,
.ss-threads-container::-webkit-scrollbar {
  width: 10px;
}

.ss-title-container,
.pinned-title-container {
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}

.thread-container {
  padding: 0.1rem 1rem;
  margin-bottom: 0.5rem;
  background-color: #444;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
  /* opacity: 0.4; */
  color: #fff;
}

.thread-container:hover {
  background-color: #3a3a3a;
}

.selected-thread {
  font-weight: bold;
  color: #fff;
  opacity: unset !important;
  background-color: #3773b0;
}

.thread-content {
  display: flex;
  position: relative;
  padding: 0.4px;
  width: 100%;
}

.conversation-title {
  display: inline-block;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.threads-container .thread-container:hover .thread-ellipsis,
.pinned-threads-container .thread-container:hover .thread-ellipsis,
.ss-threads-container:hover .thread-ellipsis {
  display: block;
}

.threads-container .thread-container:hover .thread-time-ago,
.pinned-threads-container .thread-container:hover .thread-time-ago,
.ss-threads-container .thread-container:hover .thread-time-ago {
  display: none;
}

.thread-time-ago.new {
  right: -6px;
  background-color: deepskyblue;
}

.thread-time-ago {
  position: absolute;
  right: -5px;
  font-size: 11px;
  align-self: center;
  color: black;
  background-color: #f1f3f5;
  padding: 2px 4px;
  border-radius: 12px;
}

.thread-ellipsis {
  display: none;
  position: absolute;
  right: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.thread-options-list {
  position: absolute;
  right: 10px;
  background: #141414;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  align-items: center;
}

.thread-option {
  background: none;
  border: none;
  padding: 10px 10px;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  width: 90%;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 10px;
}

.thread-option:hover {
  background-color: #3a3a3a;
}

.thread-option.delete-thread {
  color: #d9534f;
  font-weight: bold;
}

.thread-option.delete-thread:hover {
  background-color: #fbecec;
  color: #b52b27;
}

.pinned-thread-icon {
  margin: 0px 0px 0px 7px;
  color: goldenrod;
  transform: rotate(45deg);
}

.confirm-deletion-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dimmed background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.confirm-deletion-container {
  position: relative;
  background-color: #282828;
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.close-delete-wrapper {
  top: 10px !important;
  right: 10px !important;
  transition: color 0.2s ease;
}

.close-delete-wrapper:hover {
  color: #fff;
}

.confirm-deletion-container h1 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.confirm-deletion-container p {
  font-size: 1rem;
  color: #ddd;
  margin: 0;
}

.delete-chat-title {
  font-weight: 700;
}

.delete-thread-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #e53935;
  color: #fff;
  transition: background 0.2s ease;
  width: 100%;
}

.delete-thread-btn:hover {
  background-color: #c62828;
}

@media (max-width: 480px) {
  .confirm-deletion-container {
    border-radius: 12px;
    max-width: 250px;
  }

  .confirm-deletion-container h1 {
    font-size: 1.2rem;
  }

  .delete-thread-btn {
    padding: 0.65rem;
    font-size: 0.95rem;
  }

  .no-sessions .user-welcome {
    display: none;
  }
}

/* .thread-container[data-status="ACTIVE"] {
  font-weight: bold;
  color: #fff;
} */

/* .thread-container[data-status="INACTIVE"] {
  opacity: 0.6;
  color: #fff;
} */

.close-sidebar {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: #3773b0;
  font-size: 1.3rem;
  user-select: none;
  transition: color 0.2s ease;
  z-index: 9999;
}

.close-sidebar:hover {
  color: #3773b0;
}

.player {
  z-index: 3;
  width: 100%;
}

.tpplus-embed-player-api {
  position: relative;
  z-index: 3;
}
.tpplus-embed-player-api .close-btn {
  float: right;
  font-size: 25px;
  color: white;
  top: 1px;
  right: 3px;
  position: relative;
  z-index: 99999;
}

.fp-context-menu.fp-menu.fp-active {
  display: none;
}

#skipBtn {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: not-allowed;
  transition: background-color 0.3s, cursor 0.3s;
  position: absolute;
  bottom: 35px;
  right: 20px;
  z-index: 9999;
}

#skipBtn:not(:disabled) {
  background-color: #ff5e5e;
  cursor: pointer;
}

#skipBtn:not(:disabled):hover {
  background-color: #e04e4e;
}

.pip-icon {
  position: absolute;
  color: #fff;
  z-index: 100;
  right: 15px;
  top: 15px;
  font-size: 18px;
  cursor: pointer;
}

.fp-fullscreen {
  right: 35px;
  position: absolute;
  top: 5px;
}

.fp-share {
  display: none;
}

.fp-visible {
  display: none !important;
}

.flowplayer {
  border-radius: 20px;
}
.flowplayer .fp-context-menu {
  display: none;
}
.fp-progress-circle,
.fp-volume-circle {
  width: 10px !important;
  height: 10px !important;
  background-color: white !important;
  border-radius: 50% !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.fp-progress-circle {
  left: 100% !important;
}

.fp-volume-circle {
  left: 43px;
  z-index: 3;
}

.flowplayer .fp-color {
  background-color: #3773b0 !important;
}
.fp-progress,
.fp-volumebar {
  position: relative;
}

.fp-playlist {
  display: none;
}
.fp-fullscreen {
  display: none;
}

.flex {
  display: flex;
  justify-content: center;
}

#tp_wrapper {
  background: url("https://d2urhn0mmik6is.cloudfront.net/site/biblestrong-ai/background1-min.jpg")
    center center;
  width: 100%;
  background-size: cover;
}
#main_body {
  display: flex;
  flex-direction: column;
  height: 100dvh;
}
#container {
  background-color: unset !important;
}

.grid {
  max-width: unset !important;
}

a {
  color: white;
}

.content {
  margin: unset !important;
  max-width: unset !important;
}

.title-img_container {
  justify-self: center;
}

#title-img {
  width: 200px;
}

.title-img_container,
.bible-strong p,
#bible-img {
  opacity: 0;
}
.header-container {
  display: flex;
  align-items: center;
  position: relative;
  background: unset !important;
  border-bottom: unset !important;
  width: 100%;
  z-index: 99;
}

.user-wrapper {
  color: #fff;
  font-size: 13px;
  line-height: 1.2em;
  overflow: hidden;
}

.user-wrapper .user-avatar.unread:after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
  position: absolute;
  border-radius: 10px;
}

.user-wrapper .user-avatar.unread:after {
  top: -3px;
  right: 0;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: #282828;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px;
}

.user-dropdown.show {
  display: block;
}

.mobile-user-dropdown.show {
  display: block;
}

.user-dropdown .user-dropdown-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

.user-dropdown .user-dropdown-item:hover {
  background-color: #3a3a3a;
}

.user-dropdown i {
  font-size: 1rem;
}

.user-dropdown-email {
  color: #888;
  cursor: default;
  pointer-events: none;
}
.user-dropdown-email i {
  color: #888;
}

.mobile-user-wrapper {
  display: none;
}

.mobile-bg {
  display: none;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 100%;
}
/* .user-dropdown-item.email:hover {
    background-color: #fff;
  } */

.dj-img_radius {
  border: 1px solid grey;
  border-radius: 50%;
  height: 60px;
  display: flex;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 15px;
  bottom: 10px;
}

#dj-img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}
#bible-img {
  transform-origin: center center;
}

.welcome-header {
  display: none;
  position: absolute;
  top: 37px;
}

.welcome-header h1 {
  color: #3773b0;
  font-size: 30px;
}
.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 90%;
  transition: margin-right 0.3s ease;
  position: relative;
  z-index: 9;
}

.bible-strong p {
  color: #3773b0;
  text-transform: uppercase;
  max-width: 400px;
}

.content-center {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  max-width: 750px;
  color: white;
  align-self: center;
}
.content-center .space {
  width: 5px;
}

.question-header {
  width: 90%;
  align-self: center;
}
.content-center .bottom-row {
  padding-bottom: 30px;
  max-width: 600px;
  place-self: center;
  text-wrap: wrap;
}

.tooltip-container {
  display: none;
  top: -6px;
  width: 170px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: relative;
}

.tooltip-container::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.chat-outline {
  position: relative;
  display: flex;
  border: 1px solid #3773b0;
  border-radius: 30px;
  padding: 7px;
  width: 1%;
  opacity: 0;
  height: auto;
  background-color: #2c2c2c;
}

.chat-outline::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(
    from var(--angle),
    rgba(255, 255, 255, 1) 0deg,
    rgba(255, 255, 255, 0.25) 25deg,
    rgba(255, 255, 255, 0) 50deg,
    rgba(255, 255, 255, 0) 310deg,
    rgba(255, 255, 255, 0.25) 335deg,
    rgba(255, 255, 255, 1) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 2s linear infinite;
  /* opacity: 0;  */
  display: none;
  transition: opacity 0.3s ease;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}

.chat-outline.active::after {
  display: block;
}
.chat-container {
  text-align: -webkit-center;
  max-width: 600px;
  align-items: center;
}
.chat-history {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  gap: 10px;
}

.wrapper-height {
  height: 100%;
  margin-top: 130px;
}

.response-wrapper {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  width: 90%;
}

/* .response-container {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black 90%,
    transparent 100%
  );

  display: none;
  height: 70%;
  padding-top: 10%;
  flex-direction: column;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
} */

.response-container {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black calc(90% + 60px),
    transparent 100%
  );
  display: none;
  /* max-height: 700px; */
  height: 80%;
  /* padding-top: 10%; */
  flex-direction: column;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
}

.response-container::-webkit-scrollbar {
  width: 12px;
}

.response-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

.response-container::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.response-container::-webkit-scrollbar-track {
  background: transparent;
}

.response-container > *:first-child {
  margin-top: auto;
}
.response-container p {
  color: white;
  padding: 5px;
  text-align: left;
  font-size: 17px;
  line-height: 1.6;
  margin: unset;
}

.bot-question {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.bot-question.visible {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 1;
}

p.prefixMessage {
  font-size: 8px;
  padding-top: 20px;
}

.chat-question,
.chat-response {
  display: flex;
  max-width: 100%;
  padding: 10px 10px;
  width: auto;
  border: none;
  border-radius: 30px;
  margin-bottom: 25px;
}

.prompt-follow-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.prompt-follow-up.visible {
  opacity: 1;
  transform: none;
}

.feedback-resources-container {
  display: flex;
  position: absolute;
  bottom: -31px;
  width: 90%;
  padding-bottom: 10px;
}

.response-selection_container {
  display: flex;
}
.submit-container {
  position: relative;
  display: inline-block;
}

.confirm-deletion-container .fa-circle-xmark {
  position: absolute;
  right: 25px;
  top: 20px;
}

.fa-circle-xmark {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.fa-copy:hover,
.fa-arrow-up-from-bracket:hover {
  opacity: 0.3 !important;
}

.resources-wrapper {
  background: linear-gradient(
    125deg,
    #3773b0 0%,
    #5c6fa8 33%,
    #4d567e 67%,
    #2e3b44 100%
  );
  padding: 1px 5px;
  display: flex;
  border-radius: 20px;
  width: 100%;
}

.resources-wrapper .resources-container {
  display: flex;
  padding: 1px 5px;
  gap: 10px;
  align-items: center;
  position: relative;
  width: 100%;
}

.mySwiper {
  position: absolute;
  left: 40%;
  display: block;
  width: 150px;
}

.resources-container .related-products-text p {
  padding: unset !important;
  font-size: 12px !important;
}

.resources-container .related-products-container {
  display: flex;
}

.product-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.product-container .stamp-container {
  text-overflow: ellipsis;
  width: 80px;
  background: grey;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.stamp-container p {
  white-space: nowrap;
  font-size: 12px !important;
  padding: unset !important;
  overflow: hidden;
  max-width: 80px;
  text-overflow: ellipsis;
}

.product-stamp-container p,
.resources-see-more p {
  font-size: 12px !important;
  padding: unset !important;
}
.product-stamp-container p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.resources-see-more {
  display: flex;
  position: absolute;
  right: 1px;
  gap: 10px;
  cursor: pointer;
  align-items: center;
}
/* .feedback-unclicked {

  display: none;
} */
.send-feedback-wrapper {
  padding: 10px;
  position: relative;
  font-size: 13px;
  background-color: #8888884d;
  color: #fff;
  border-radius: 45px;
  padding: 12px 16px 16px 16px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  position: relative;
  margin: 8px 0;
  margin-top: 25px;
}

.feedback-selections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.feedback-button {
  background: white;
  color: black;
  border: 2px solid #3773b0;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.feedback-button:hover {
  background-color: #3773b0;
  color: white;
}

.feedback-button.selected-feedback {
  background-color: #3773b0;
  color: white;
}

.submit-container {
  margin-top: 1rem;
}

.submit-feedback {
  background-color: black;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-feedback:hover {
  background-color: #3773b0;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.fa-thumbs-up:hover {
  color: #377e22;
}
.fa-thumbs-down:hover {
  color: #ea3323;
}

.thumbs,
.copy-message,
.share-message {
  font-size: 20px;
  padding: 0.125em;
  color: white;
  margin-right: 10px;
  cursor: pointer;
}

.copy-success {
  color: green;
}

.copy-fail {
  color: red;
}

.clear-chat {
  position: absolute;
  display: flex;
  right: 20px;
}

.clear-chat p {
  color: white;
  padding-right: 10px;
  font-size: 18px;
}

.fa-trash-can {
  font-size: 24px;
  color: red;
}

.media_player {
  width: 100%;
  aspect-ratio: 121 / 68;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 25px;
}

.play-media {
  position: absolute;
  background: gray;
  border-radius: 20px;
  padding: 2px 2px;
  top: 50%;
  padding: 0 10px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 9999;
  display: inline;
  width: max-content;
}

.custom-control-wrapper {
  opacity: 0;
  display: flex;
  position: absolute;
  padding: 2px 2px;
  top: 40%;
  padding: 0 10px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 9;
}

.custom-control-container {
  display: flex;
  gap: 15px;
}

.custom-controls {
  height: 50px;
  aspect-ratio: 100 / 100;
  color: white;
  z-index: 9;
}

.custom-controls:hover {
  color: #3773b0;
}

.chat-question {
  align-self: flex-end;
  background-color: #3773b0;
  opacity: 0.8;
}

.chat-response {
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: flex-start;
}
.chat-container button {
  background: none;
  border: none;
  font-size: 24px;
  color: #3773b0;
}

.fa-microphone {
  display: none;
  opacity: 0;
  position: relative;
  left: 0;
  padding-right: 10px;
}

#chevron {
  opacity: 0;
  right: 2px;
  position: absolute;
  top: calc(50% - 13px);
  cursor: pointer;
}
.tap-hold {
  color: blue;
}
#type-chat {
  position: relative;
  border: none;
  background: none;
  color: white;
  width: 100%;
  resize: none;
  outline: none;
  text-align-last: left;
  padding: 8px 0 0 0;
  /* height: 23px; */
  max-height: 100px;
}

/* #type-chat:focus {
	padding: 10px 0 0 0;
  } */

textarea::placeholder {
  font-size: 17px;
  color: white;
  opacity: 0.6;
  width: 90%;
}

.blue {
  font-size: 30px;
  color: blue;
}
.over-limit,
.under-limit {
  color: red;
  position: absolute;
  left: 24px;
}

.visible {
  display: flex !important;
}

.hide {
  display: none !important;
}
.over-limit,
.under-limit,
.counter {
  display: none;
}
.counter {
  color: #cdc9c9;
  position: absolute;
  right: 13px;
  top: 2px;
}

.over-limit {
  color: red;
}
.character-counter_container {
  color: #e1dcdb;
  font-size: 12px;
  width: 90%;
  justify-content: center;
  position: relative;
}
.prompt-defaults {
  padding-top: 50px;
}

.prompt button {
  background-color: rgb(194 191 191 / 40%);
  border: none;
  border-radius: 30px;
  color: white;
  padding: 4px 10px;
  cursor: pointer;
}
.prompt-defaults {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  max-width: 750px;
}
.button-list {
  flex-wrap: wrap;
  max-width: 600px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.prompt-defaults .button-list,
.prompt-defaults .bottom-row {
  display: flex;
  max-width: 800px;
  gap: 10px;
  justify-content: center;
  padding: 10px;
}
.prompt {
  opacity: 0;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-bottom: 2px;
}

.footer-container p {
  padding-top: 20px;
  color: white;
  font-size: 9px;
}
.footer-container a {
  font-size: 9px;
}
.vertical-line {
  border-left: 1px solid white;
  height: 30px;
}

.no-select {
  user-select: none; /* Non-prefixed version, supported by Chrome, Edge, Opera, Firefox, and Safari */
  -webkit-user-select: none; /* Safari */
  -webkit-touch-callout: none; /* iOS Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

.no-select.flex {
  position: relative;
  width: 100%;
}

#chatContainer,
#chatInput {
  transition: height 0.2s ease;
}

.disclaimer {
  display: flex;
  justify-content: center;
  padding: 20px 3px;
  max-width: 600px;
  color: #d3d3d3;
  opacity: 0;
}

.disclaimer p {
  font-size: 10px;
  width: 80%;
}

.focus {
  border: 3px solid #3773b0 !important;
  box-shadow: rgba(55, 115, 176, 1) 0 0 10px 1px;
}

.bible-strong_transition {
  position: fixed;
  top: 124px;
  left: 362px;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(-339px, -100%) scale(0.5, 0.5);
}
.learn-more,
.read-less {
  color: #3773b0;
  cursor: pointer;
}

.eos-icons--three-dots-loading {
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='18' cy='12' r='0' fill='%23000'%3E%3Canimate attributeName='r' begin='.67' calcMode='spline' dur='1.5s' keySplines='0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8' repeatCount='indefinite' values='0;2;0;0'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='0' fill='%23000'%3E%3Canimate attributeName='r' begin='.33' calcMode='spline' dur='1.5s' keySplines='0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8' repeatCount='indefinite' values='0;2;0;0'/%3E%3C/circle%3E%3Ccircle cx='6' cy='12' r='0' fill='%23000'%3E%3Canimate attributeName='r' begin='0' calcMode='spline' dur='1.5s' keySplines='0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8' repeatCount='indefinite' values='0;2;0;0'/%3E%3C/circle%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.authenticate-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 164px;
  padding: 20px 0 0 0;
}

.arrow {
  padding: 5px;
}

.arrow::before {
  content: "\25BA";
  font-family: Arial, sans-serif;
  font-size: 13px;
  display: inline-block;
  transform: scaleX(1);
  line-height: 1;
  padding-right: 7px;
}

.response-header {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 10px;
}

.media-counter {
  position: absolute;
  left: 20px;
}

.media-counter p {
  color: white;
  font-size: 18px;
}

a,
a:visited {
  text-decoration: none !important;
  color: white !important;
}

.disclaimer-popup {
  background-color: rgba(0, 0, 0, 1);
  bottom: 110px !important;
  border-radius: 30px;
  max-width: 400px;
}

/* login/signup */

.sign-in-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: anchor-center;
  width: 80%;
  margin: 0 auto;
  height: 100svh;
}

.sign-in_overlay {
  /* background-color: rgb(194 191 191 / 40%); */
  background-color: #3a3a3a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}
.sign-in_overlay img {
  margin-left: -10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #3773b0;
  cursor: pointer;
}

.sign-in_overlay h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  color: #fff;
}

.auth-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-input {
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: black;
  font-size: 14px;
  width: 100%;
}

.auth-input::placeholder {
  color: black;
}

.login-reset-btn {
  background-color: #3773b0;
  color: #fff;
  padding: 12px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  width: 85%;
}

.sign-btn:hover {
  background-color: #2c5e90;
}

.or-separator {
  text-align: center;
  margin: 20px 0;
  color: #aaa;
  position: relative;
  display: none;
}

.or-separator::before,
.or-separator::after {
  content: "";
  height: 1px;
  width: 40%;
  background: #666;
  position: absolute;
  top: 50%;
}

.or-separator::before {
  left: 0;
}

.or-separator::after {
  right: 0;
}

.social-btn {
  padding: 12px;
  margin: 5px 0;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.google-btn {
  background-color: #db4437;
  color: white;
  display: none;
}

.social-btn i {
  margin-right: 8px;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  height: 100dvh;
}

.login-wrapper-inner {
  background-color: #3a3a3a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  width: 100%;
}

.login-ui h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}

.login-ui p {
  color: #ccc;
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

.login-ui > img {
  text-align: center;
  margin: auto;
}

.login-ui {
  display: grid;
}

.login-ui a {
  color: #3773b0;
  text-decoration: underline;
}

.m_rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.two-fields {
  display: flex;
  gap: 20px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 13px;
  margin-bottom: 5px;
  color: #ccc;
}

.field input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: black;
  font-size: 14px;
}

.field-password {
  position: relative;
  /* width: 80%; */
}

.field-password .check {
  display: none;
  position: absolute;
  right: 10px;
  top: 38px;
  color: #28a745;
}

.btn-create-account {
  display: block;
  /* width: 100%; */
  text-align: center;
  background-color: #3773b0;
  padding: 14px;
  border-radius: 6px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  margin-top: 30px;
  position: relative;
  transition: background 0.3s;
}

.btn-create-account:hover {
  background-color: #2c5e90;
}

.btn-create-account .spinner {
  display: none;
  margin-left: 10px;
}

.or {
  text-align: center;
  margin: 30px 0;
  position: relative;
  color: #aaa;
  display: none;
}

.or span {
  background: #333;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.or::before {
  content: "";
  height: 1px;
  width: 100%;
  background: #666;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}

.social-login-wrapper {
  text-align: center;
}

.social-login-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.login-with-google {
  display: flex;
  align-items: center;
  background: #db4437;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  display: none;
}

.login-with-google .icon {
  margin-right: 8px;
}

.fb-login-button iframe {
  border-radius: 6px !important;
}

.m_row .field input.error-field {
  background: #ffe0e0;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 184, 184, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(255, 184, 184, 1);
  box-shadow: 0px 0px 0px 1px rgba(255, 184, 184, 1);
  transition: all 0.25s ease;
}

.error-modal {
  text-align: center;
}

.home-login-error {
  float: left;
  padding-top: 10px;
  margin: unset !important;
}

.error-msg {
  display: none;
  color: #c00;
  font-size: 16px;
  background: lightgray;
  border-radius: 10px;
  padding: 5px;
  margin: 25px;
}
.login-ui.create-account .error-msg {
  margin: 20px 0 15px 0;
}

.password_helper {
  position: fixed;
  top: -1000px;
  left: -1000px;
  background: #fff;
  padding: 10px;
  font-size: 13px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 999;

  background: #333;
  color: #fff;
}
.password_helper strong {
  font-size: 14px;
}
.password_helper:before {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: -4px;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  background: #333;
}
.password_helper.visible {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.password_helper.vertical:before {
  top: -4px;
  left: 13px;
}
.password_helper table {
  border: none;
  outline: none;
}
.password_helper .fa {
  color: #efefef;
  color: #505050;
}
.password_helper .fa.ok {
  color: #008816;
  color: #78e150;
}

#open-reset-modal {
  margin-top: 20px;
  display: block;
  padding: 12px 20px;
  background-color: darkgray;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  align-content: center;
  width: 85%;
}

#open-reset-modal:hover {
  background-color: #3773b0;
}

/* reset password ui */
.password-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-content: center;
}

/* Modal Content Box */
.password-modal .modal-content {
  display: flex;
  flex-direction: column;
  justify-self: anchor-center;
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 50%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease;
  align-items: center;
}

/* Close Button */
.password-modal .close-btn {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.password-modal .close-btn:hover {
  color: #000;
}

.password-modal .modal-content h2 {
  margin-bottom: 20px;
  color: #333;
}

.password-modal .error-msg-reset {
  display: none;
  background-color: #ffdddd;
  color: #d8000c;
  padding: 10px;
  margin-bottom: 15px;
  border-left: 5px solid #d8000c;
  border-radius: 4px;
}

#reset-password-form input {
  display: block;
  width: 100%;
  padding: 10px 0px 12px 0px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  background: #fff;
  background: #3a3a3a;
}
#reset-password-form input::placeholder {
  color: #fff;
  margin-right: 10px;
}
#reset-password-form {
  width: 100%;
}

#reset-password-form button {
  width: 100%;
  padding: 12px;
  background-color: #3773b0;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* #reset-password-form button:hover {
  background-color: #0056b3;
} */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* confirm account  */
.confirm-account h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 1rem;
}

.confirm-account p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.confirm-account .field {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.confirm-account input[type="text"] {
  flex: 1;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
}

.confirm-account .resend-verify {
  font-size: 0.9rem;
  color: #3773b0;
  text-decoration: none;
  white-space: nowrap;
}

.confirm-account .resend-verify:hover {
  text-decoration: underline;
}

.confirm-account .btn-verify-account {
  display: inline-block;
  background-color: #3773b0;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-bottom: 1rem;
}

.confirm-account .btn-verify-account:hover {
  background-color: #3773b0;
}

.confirm-account .error-msg {
  color: #e74c3c;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.confirm-account .dismiss-verify {
  display: inline-block;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

.confirm-account .dismiss-verify:hover {
  text-decoration: underline;
}

.scripture-ref {
  color: #6fb7ff;
  text-decoration: underline;
  cursor: pointer;
}

.home-login-prompt {
  font-size: 13px;
  background-color: rgb(194 191 191 / 40%);
  color: #222;
  border-radius: 12px;
  padding: 12px 16px 16px 16px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  position: relative;
  margin: 25px 0;
}

.home-login-prompt p {
  margin: 6px 0;
  line-height: 1.3;
}

.home-login-prompt strong {
  font-weight: 600;
  font-size: 14px;
}

.home-login-prompt .home-login-close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.home-login-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.home-create-link,
.home-continue-btn {
  background-color: grey;
}
.home-login-btn {
  background-color: #3773b0;
}
.home-login-actions button,
.home-create-link {
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  user-select: none;
  color: #fff;
}
.home-login-fields {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-login-input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  max-width: 300px;
}

.home-submit-login-btn {
  background: #3773b0;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  max-width: 100px;
}

.home-submit-login-btn:hover {
  background-color: #e86f52;
}

.network-message-container {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgb(238 96 96);
  border-radius: 0px 0px 50px 50px;
  top: 10px;
  padding: 12px;
  border-radius: 15px;
  display: flex;
  gap: 10px;
}

.network-message-container h1,
.network-message-container p {
  margin: unset;
  font-size: 12px;
  margin-bottom: 10px;
}

.global-error-wrapper {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 99;
}

.error-container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  width: max-content;
  max-width: 320px;
  background: linear-gradient(135deg, #ff4d4f, #d9363e);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.25s ease-out;
}

.error-container .fa-triangle-exclamation {
  font-size: 18px;
  color: #fff;
  opacity: 0.9;
}

.error-container h1 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.error-container button {
  border: 1pt solid #fff;
  background: none;
  border-radius: 20px;
  color: #fff;
  padding: 4px;
}

@media (max-width: 487px) {
  .fa-microphone {
    padding-right: unset;
  }
  #chevron {
    top: calc(50% - 14px);
  }

  .related-products-text {
    display: none;
  }

  .response-container p {
    font-size: 12px;
  }

  .product-stamp-container p {
    max-width: 80px;
  }
}

@media (max-width: 430px) {
  .footer-container a {
    font-size: 7px;
  }
  .footer-container p {
    font-size: 7px;
  }
}

@media (max-width: 360px) {
  .prompt button {
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .dj-img_radius {
    width: 70px;
    height: 70px;
  }
  .header-container {
    padding: 6px 10px;
  }
  #title-img {
    height: 50px;
  }

  #bible-img {
    height: 45px;
  }

  p {
    font-size: 12px;
  }
}

@media (max-height: 830px) {
  .prompt-defaults {
    padding-top: 25px;
  }
}
@media (max-width: 625px) {
  /* .wrapper-height {
    margin-top: 150px;
  }
  .prompt button {
    font-size: 12px;
  }
  .response-container p {
    font-size: 12px;
  }

  .play-media {
    width: 115px;
  } */

  .network-message-container {
    width: 80%;
    justify-content: center;
  }

  .feedback-resources-container {
    bottom: -60px;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 561) {
  .prompt button {
    font-size: 10px;
  }
}

@media (max-width: 1000px) {
  .bible-strong_transition {
    left: 333px;
    transform: translate(-339px, -100%) scale(0.4, 0.4);
  }
}
@media (max-width: 950px) {
  .bible-strong_transition {
    display: none;
  }

  .main-container.sidebar-open {
    margin-left: unset;
  }
  .user-wrapper:not(.no-sessions) {
    display: none;
  }
  .mobile-user-welcome-wrapper {
    display: flex;
    flex-direction: column;
  }
  .mobile-user-wrapper {
    display: flex;
    color: #fff;
    font-size: 13px;
    line-height: 1.2em;
    overflow: hidden;
    top: 10px;
    left: 10px;
    margin-top: 10px;
    padding: 0.3rem;
  }

  .mobile-user-welcome:first-child {
    font-weight: 600;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  span.mobile-user-welcome {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #ffffffc4;
  }

  .mobile-logged-in {
    position: absolute;
    left: 10px;
    display: flex;
    justify-content: flex-end;
  }

  .mobile-user-logged-in {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
  }

  .mobile-bg.mobile-sidebar-open {
    display: block;
  }

  .mobile-user-avatar {
    margin-left: unset;
    cursor: pointer;
  }

  .mobile-user-dropdown {
    display: none;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #444;
    border-radius: 15px;
    width: 187px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
  }

  .mobile-user-dropdown .mobile-user-dropdown-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
  }

  .mobile-user-dropdown .mobile-user-dropdown-item:hover {
    background-color: #3a3a3a;
  }

  .layout-wrapper.sidebar-open .main-container {
    margin-left: unset;
    transition: unset;
  }
}

@media (max-width: 500px) {
  .welcome-header h1 {
    font-size: 20px;
  }
  .media_img {
    max-width: 160px;
  }
}

@media (max-width: 400px) {
  .welcome-header h1 {
    font-size: 17px;
  }
}

@media (max-height: 700px) {
  .response-container {
    max-height: 400px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
    color: white;
  }

  input,
  textarea {
    background-color: #111;
    color: white;
    caret-color: white;
  }
}

@media (min-width: 1450px) {
  .main-container.sidebar-open {
    margin-left: unset;
  }
}

@media (max-height: 700px) {
  .footer-container {
    display: none;
  }

  .prompt3,
  .prompt4,
  .prompt5 {
    opacity: 0 !important;
  }
}

.loader {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  top: unset;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #3773b0;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.55) transparent;
}

/* Chromium (Windows, macOS, Linux) */
::-webkit-scrollbar {
  width: 8px; /* thinner than default = non-Windows look */
}

::-webkit-scrollbar-track {
  background: transparent; /* key: removes Windows track */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 999px; /* pill shape = modern */
  border: 2px solid transparent; /* removes boxy Windows edge */
  background-clip: content-box;
  transition: background-color 0.15s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.65);
}

::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.8);
}
