.lcars-chat-container {
  width: 780px;
  height: 600px;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 0 60px 0 0;
  overflow: hidden;
}
.lcars-chat-bar {
  background: #f7c64a;
  height: 40px;
  border-radius: 0 40px 0 0;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-weight: bold;
  color: #000;
}
.lcars-chat-window {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #1a1a1a;
}
.lcars-chat-message {
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 20px;
  max-width: 75%;
  font-size: 14px;
  line-height: 1.4;
}
.lcars-chat-message.user {
  background: #6699cc;
  color: black;
  margin-left: auto;
  border-radius: 20px 0 20px 20px;
}
.lcars-chat-message.bot {
  background: #dbf;
  color: black;
  margin-right: auto;
  border-radius: 0 20px 20px 20px;
}
.lcars-chat-input {
  display: flex;
  background: #f7c64a;
  padding: 9px;
}
.lcars-chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 10px;
  background: #000;
  color: #89f;
}
.lcars-chat-input button {
  margin-left: 10px;
  padding: 10px 15px;
  border: none;
  background: #89f;
  color: black;
  font-weight: bold;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
}
.lcars-chat-input button:hover {
  background: #ffcc99;
}
/* Scrollbar LCARS tweak */
.lcars-chat-window::-webkit-scrollbar {
  width: 8px;
}
.lcars-chat-window::-webkit-scrollbar-thumb {
  background: #89f;
  border-radius: 4px;
}
