* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #0a0a0a;
  color: #c8c8a0;
  font-family: "Courier New", monospace;
  font-size: 15px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
#app {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  gap: 8px;
}
#output {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.msg { line-height: 1.6; }
.msg.description { color: #d4c98a; }
.msg.chat        { color: #7ec8c8; }
.msg.error       { color: #c87e7e; }
.msg.encounter   { color: #e08050; font-style: italic; }
.msg.system      { color: #888; }
#input-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 8px;
}
#prompt { color: #888; }
#cmd {
  flex: 1;
  background: transparent;
  border: none;
  color: #c8c8a0;
  font-family: inherit;
  font-size: inherit;
  outline: none;
}