:root {
  background-color: var(--disBlack);
  --disBlack: #23272a;
  --disDarkButNotBlack: #2c2f33;
  --disDarkOrage: #a84300;
  --disOrange: #e67e22;
  --disGold: #f1c40f;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: whitesmoke;
}

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  display: flex;
  padding: 0;
}
button {
  background-color: var(--disDarkButNotBlack);
  border: none;
  border-radius: 10px;
}

button:hover {
  cursor: pointer;
}

.history_Wrapper {
  min-width: 20%;
  height: 100%;
  background-color: var(--disDarkButNotBlack);
}

.chat_Wrapper {
  min-width: 60%;
  text-align: center;
  margin-bottom: 50px;
  height: 100vh;
}

.title h1 {
  color: #f5f5f5;
  text-transform: uppercase;
  font-size: 40px;
}

.conversation {
  display: flex;
  flex-direction: column;
  height: 80vh;
  overflow: hidden;
  justify-content: end;
  color: whitesmoke;
}

.qna {
  display: flex;
  flex-direction: column-reverse;
  overflow-y: scroll;
  margin: 0 100px;
}

.qna::-webkit-scrollbar,
.diceHistory::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.qna,
.diceHistory {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.test {
  text-align: left;
  padding: 10px 20px;
  background-color: var(--disDarkButNotBlack);
  border-radius: 20px 20px 20px 0;
  margin-bottom: 20px;
}
.test:nth-child(odd) {
  text-align: right;
  border-radius: 20px 20px 0 20px;
}

.test h2 {
  margin: 10px 0 5px 0;
  color: var(--disOrange);
}
.test:nth-child(2n) h2 {
  color: var(--disGold);
}

.test p {
  margin: 5px 0 10px 0;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.suggestionBtn {
  position: relative;
  z-index: 0;
  min-width: 15%;
  color: whitesmoke;
  margin-bottom: 10px;
  margin-top: 40px;
  padding: 5px 0;
  min-height: 40px;
  border: var(--disDarkButNotBlack) 2px solid;
  background-color: var(--disBlack);
  justify-content: center;
}

.suggestions p {
  margin: 0;
  font-size: 16px;
}

.hover_Text {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: var(--disDarkButNotBlack);
  top: calc(-85% - 4px);
  width: 100%;
  min-height: 30px;
  border-radius: 10px;
}

.hover_Text_Pip {
  display: none;
  width: 10px;
  height: 10px;
  background-color: var(--disDarkButNotBlack);
  position: absolute;
  left: calc(50% - 5px);
  top: calc(-30% - 2px);
  rotate: 45deg;
}

.suggestionBtn:hover .hover_Text_Pip {
  display: block;
}

.suggestionBtn:hover .hover_Text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inputs {
  display: flex;
  justify-content: space-evenly;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.input_Types {
  min-width: 100%;
  background-color: var(--disDarkButNotBlack);
  display: flex;
  border-radius: 10px;
  justify-content: space-between;
}

.conversation input {
  background-color: var(--disDarkButNotBlack);
  border: none;
  padding: 10px;
  border-radius: 10px;
  color: whitesmoke;
  font-size: 16px;
  min-width: calc(100% - 75px);
  min-height: 30px;
}

.input_Types button {
  width: 50px;
  height: 50px;
  text-align: center;
  justify-content: center;
}
.svg_Filter {
  filter: invert(100%) sepia(9%) saturate(236%) hue-rotate(305deg)
    brightness(120%) contrast(92%);
}

.counter {
  display: flex;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: #f5f5f5;
}

.counter p {
  margin: 0;
  font-size: 12px;
}

.naturalCompetition {
  display: flex;
  width: 80%;
  height: 10vh;
  color: whitesmoke;
  margin: 10px auto;
  flex-direction: column;
  gap: 10px;
}

.naturalCounter {
  display: flex;
  justify-content: space-between;
}

.naturalCounter p {
  margin: 0;
}
.diceHistories {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  color: whitesmoke;
}
.diceHistory {
  display: flex;
  flex-direction: column-reverse;
  overflow-y: scroll;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
.diceRoll {
  background-color: var(--disBlack);
  border-radius: 20px;
  width: 100%;
  height: 100px;
}

.diceRoll p,
h3 {
  margin-left: 10px;
  min-width: 100%;
}
