/* @media (max-width: 768px) {
  .app-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: auto;
  }
} */

.app-layout .left-column * {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
}

.app-layout {
  max-width: 1380px;
  margin: auto;
  padding: 40px 0;
  box-shadow: none;
  position: relative;
  margin-bottom: 100px;
  grid-template-columns: auto;
}


.left-column {
  order: 2;
  border-right: 0;
  border-top: 1px solid #ccc;
}

.right-column {
  order: 1;
  max-width: 500px;
}

.prompt-container {
  justify-content: unset;
}

#input-area {
  position: absolute;
  bottom: -80px;
  left: 30px;
  width: calc(100% - 60px);
  height: 90px;
  border-radius: 5px;
}

.bot-messages {
  box-shadow: none;
}

.user-messages {
  background-color: #f5f5f5;
  box-shadow: none;
}

.sender-name {
  font-weight: bold;
}

.timestamp {
  font-size: 0.85rem !important;
}