* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --background-color: #000000;
  --text-color: #ffffff;
  --font-family: Arial, sans-serif;
  --line-height: 1.6;
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: var(--line-height);
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 1rem;
}
#root {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  body {
    padding: 0.5rem;
    min-height: 100dvh;
  }
  .container {
    padding: 0.5rem;
  }
}
.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100%;
  gap: 4rem;
}
.img-container {
  width: 100%;
  height: 100%;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.chat-input-container {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-rows: 90% 10%;
}
.chat-container {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.header {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.txt {
  width: 100%;
  height: 660px;
  overflow-x: scroll;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.input-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 1rem;
}
textarea {
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: #373737;
  border: 1px solid rgba(120, 120, 120, 0.5);
  border-radius: 10px;
  resize: none;
  color: #fff;
  font-family: var(--font-family);
  font-size: 1rem;
  scrollbar-width: none;
}
textarea:focus {
  outline: none;
  border: 1px solid rgba(120, 120, 120, 1);
}
.bx-up-arrow-alt {
  font-size: 1.2rem;
}
.submit {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgba(120, 120, 120, 0.5);
  width: 10%;
  min-width: 30px;
  transition:
    0.3s border ease-out,
    0.3s background-color ease-out;
}
.submit:active {
  border: 1px solid rgba(120, 120, 120, 1);
}
.submit:hover {
  background-color: #c9c9c9;
  border: 1px solid rgba(120, 120, 120, 1);
}
@media (max-width: 768px) {
  .container {
    padding: 0.5rem;
    grid-template-columns: 1fr;
  }
  .img-container {
    display: none;
  }
  .chat-input-container {
    padding: 0;
  }
}
.trump-pfp-name-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.trump-pfp-container {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(/trump-ai/assets/trumpsideprofile-qsBDEzZy.png);
  background-position: center;
  background-size: cover;
}
.trump-name-container {
  color: #ff4242;
}
.trump-txt-container {
  margin-left: calc(32px + 1rem);
  margin-right: 32px;
}
.user-item-container {
  display: flex;
  width: 100%;
  justify-content: end;
  flex-direction: column;
}
.user-pfp-name-container {
  display: flex;
  justify-content: end;
  gap: 1rem;
  align-items: center;
}
.user-pfp-container {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(/trump-ai/assets/elonprofile-CyWVB-Tl.png);
  background-position: center;
  background-size: cover;
}
.user-name-container {
  color: #1764c2;
}
.user-txt-container {
  margin-right: 32px;
  margin-left: calc(32px + 1rem);
  text-align: left;
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 10px;
}
