@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Raleway", sans-serif;
}

 .message-content a {
    color: #01AF35!important; /* or whatever your link color is */
  }

main {
  margin: 0 !important;
  border-radius: 0 !important;
}

.ai-message a {
  color: #01FF48;
  font-weight: 500;
  text-decoration: underline;
}

#chat-input {
  line-height: 2rem;
  min-height: unset;
  min-height: 30px;
  padding: 5px 0;
}

.ai-message > span:first-child > span:first-child {
  padding: 8px;
  background: #fff;
  width: 40px;
  height: 40px;

  aspect-ratio: 1 / 1;
}

#message-composer {
  flex-direction: row;
  min-height: unset;
  max-width: 766px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 4px 8px 0px #0000000f;
  padding: 14px 20px !important;
  background: #fff;
}
#message-composer:has(#chat-submit) {
  align-items: flex-start;
}

#message-composer > .flex.items-center.justify-between:has(#chat-submit) {
  align-items: flex-start;
  margin-top: 0;
}

.flex.items-center.gap-1:has(#chat-submit) {
  align-self: flex-start;
}

#message-composer:has(#chat-input) > .flex.items-center.justify-between {
  align-items: flex-start;
}

.flex.items-center.justify-between:has(button#chat-submit) {
  height: 40px;
  align-items: center;
}

#message-composer:has(textarea#chat-input) .flex.items-center.gap-1 {
  align-self: flex-start;
  margin-top: 0;
}

div:has(> button#chat-submit) {
  align-self: flex-start;
  height: 40px;
  display: flex;
  align-items: center;
}

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--background));
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--background)) transparent;
}
