:root {
  font-family: "Poppins";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-1 {
  width: 10%;
  height: 100%;
}

.col-2 {
  width: 20%;
  height: 100%;
}

.col-3 {
  width: 30%;
  height: 100%;
}

.col-4 {
  width: 40%;
  height: 100%;
}

.col-5 {
  width: 50%;
  height: 100%;
}

.col-6 {
  width: 60%;
  height: 100%;
}

.col-7 {
  width: 70%;
  height: 100%;
}

.col-8 {
  width: 80%;
  height: 100%;
}

.main-container {
  width: 100dvw;
  max-width: 100%;
  min-height: 100dvh;
  height: 100dvh;
  max-height: 100dvh;
  background-color: #ffffff;
  display: flex; /* Flexbox kullanarak child elemanları hizala */
  flex-direction: column; /* Child elemanları dikey hizala */
}

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

/* HEADER SECTION */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: linear-gradient(0deg, var(--secondary-color) 0%, var(--main-color) 100%);
}

#bot-name-logo {
  height: 100%;
  display: flex;
  justify-content: end;
  padding: 10px 0px 10px 20px;
}

#bot-name-logo svg {
  width: 100%;
  height: 100%;
}

.ai-listening {
  text-align: left;
  color: white;
  font-size: 13px;
  height: 100%;
  display: flex;
  align-items: end;
  padding-bottom: 17px;
  padding-left: 8px;
}
/* HEADER SECTION ENDS */
/* CHAT SECTION */
.chat {
  display: block;
  flex-grow: 1; /* Kalan alanı kapla */
  margin-top: 10px;
  margin: 10px 8px 0 8px;
  width: calc(100% - 16px);
  overflow-y: scroll; /* Scroll için overflow ayarı */
  flex-direction: column;
  scrollbar-width: none; /* Firefox için scroll bar'ı gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll bar'ı gizler */
  justify-content: end;
  scroll-behavior: smooth;
}

.chat-container-inner {
  width: 100%;
  overflow-y: visible;
  scrollbar-width: none;
}

.ai-response,
.user-question {
  width: 100%;
  margin-top: 10px;
  align-items: center;
}

.ai-response {
  color: #fff;
  display: flex;
}
.ai-chat-logo {
  width: 10%;
  display: flex;
  align-items: end;
}
.ai-answer {
  display: flex;
  text-align: left;
  background: var(--main-color);
  background: linear-gradient(0deg, var(--secondary-color) 0%, var(--main-color) 100%);
  padding: 8px;
  border-radius: 0px 10px 10px 10px;
  width: 70%;
}

.user-question {
  text-align: right;
  display: flex;
  justify-content: end;
}

.user-message {
  display: flex;
  text-align: left;
  background-color: #e7e7e7;
  padding: 8px;
  border-radius: 10px 10px 0px 10px;
  width: 70%;
}
.user-chat-logo {
  width: 10%;
  display: flex;
  align-items: end;
}
/* CHAT SECTION ENDS */
/* INPUT SECTION */

#input {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: transparent;
  padding-left: 20px;
  font-family: 'Poppins';
}

#input:focus {
  border: none;
  outline: none;
}

#send {
  width: 100%;
  padding: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: none;
}

#send img {
  height: 100%;
  width: auto;
}

.input-area {
  align-items: center;
  border-top: 1px solid #cecece;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.ai-logo {
  padding: 5px;
  width: 100%;
}

#q-mark {
  display: flex;
  align-items: center;
  padding: 10px;
}

#q-mark svg {
  cursor: pointer;
}

.center-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-info-container {
  display: none;
  flex-grow: 1; /* Kalan alanı kapla */
  margin-top: 10px;
  margin: 10px 8px 0 8px;
  width: calc(100% - 32px);
  overflow-y: scroll; /* Scroll için overflow ayarı */
  flex-direction: column;
  scrollbar-width: none; /* Firefox için scroll bar'ı gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll bar'ı gizler */
  justify-content: space-around;
  height: 100%;
  text-align: center;
}

#bot-name {
  color: var(--main-color);
}


