body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  transition: 0.25s;
}

html body,
body body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

html .button-outer .button-inner,
body .button-outer .button-inner {
  position: relative;
  display: inline-flex;
  /* Changed from flex to inline-flex */
  width: 460px;
  /* Adjusted width to make space for icon-button */
  height: 70px;
  padding: 8px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 0px solid rgba(255, 255, 255, 0.1);
  background:rgba(236, 236, 236, 0.1);
  font-size: 22px;
  outline: none;
}

html .button-outer,
body .button-outer {
  display: flex;
  padding: 11px;
  flex-direction: row;
  /* Changed from column to row to align items horizontally */
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 0px solid rgba(255, 255, 255, 0.2);
  background: rgba(126, 126, 126, 0.1);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}

.icon-button {
  position: relative;
  display: inline-flex;
  /* Changed from flex to inline-flex */
  width: 70px;
  /* Adjusted width to make space for icon-button */
  height: 70px;
  padding: 8px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(100% 100% at 50% 0%, rgba(236, 236, 236, 0.1) 0%, rgba(233, 233, 233, 0) 100%), rgba(209, 209, 209, 0.1);
  font-size: 22px;
  outline: none;
  margin-left: 10px;
}

.webIcon {
  width: 40px;
  height: 40px;
}

.chat-button {
  position: relative;
  width: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  height: 98%;
  width: 98%;
  padding: 8px 24px;
  text-align: left;
  background-color: transparent;
  border: solid 0px;
  font-size: 22px;
  outline: none;
  margin-left: 10px;
  user-select: text;
}

.chat-button-scroll {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  border-radius: 24px;
  border: 0px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 255, 13, 0.92);
  transition: 0.25s ease-in-out;
}

.chatlocation {
  max-width: 80vw;
  max-height: 50vh;
  height: 10px;
  width: 10px;
  transition: 0.25s ease-in-out;
}
.chattingActiveHeight {
  height: 40%;
  transition: 0.25s ease-in-out;
}
.chattingActiveWidth {
  width: 70%;
  transition: 0.25s ease-in-out;
}
.chattingButtonActive {
  background-color: rgba(55, 55, 55, 0.767) !important;
  transition: 0.1s ease-in-out;
}

.blinking {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { background-color: rgba(0, 255, 13, 0.92); }
  50% { background-color: rgba(55, 55, 55, 0.767); }
  100% { background-color: rgba(0, 255, 13, 0.92); }
}


.chat-button span {
  display: inline;
  max-height: none;
  overflow-y: visible;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.chat-button-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.chat-button-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}