.container-main
{
  height: 40em;
}

/* top right bottom left */
ol
{
  padding: 0 0.8em 0 2em;
  list-style: decimal;
}

.container-messages
{
  height: 16em;
  overflow-y: scroll;
  border-radius: 0.5em;
  box-shadow: 0 0 0.25em 0.25em #CCCCCC10;
}

.container-options
{
  height: 16em;
  overflow-y: scroll;
  margin: 0.8em 0 0.8em 0;
  padding: 0;
  font-size: 0.8em;
  word-wrap: break-word;
  border-radius: 0.5em;
  box-shadow: 0 0 0.25em 0.25em #CCCCCC10;
}

.container-messages::-webkit-scrollbar
{
  display: none;
}

.message
{
  padding: 0.5em;
  border-radius: 1em;
  margin-bottom: 0.33em;
  display: flex;
  flex-direction: column;
}

.message-owner
{
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 0.3em;
}

.message-text
{
  font-size: 0.8em;
  margin-bottom: 0.3em;
  word-wrap: break-word;
}


.player-bg
{
  background-color: #0099FF;
  color: black;
}
.bot-bg
{
  background-color: orange;
  color: black;
}
.system-bg
{
  background-color: #333333;
  color: white;
}

.chat-input-form
{
  display: flex;
  align-items: center;
  margin: 0.1em 0;
}

.response-selector
{
  display: flex;
  justify-content: center;
  margin: 0.4em 0 0.2em 0;
  max-width: 40em;
}

.response-button
{
  width: 100%;
  background-color: #0099FF;
  color: #fff;
  font-size: 1.1em;
  padding: 0.5em;
  display: block;
}

.chat-input
{
  padding: 0.5em;
  border: none;
  border-radius: 0.5em;
  background-color: #f5f5f5;
  color: #333;
  font-size: 1em;
  flex-grow: 1;
  margin: 0.15em;
}

.send-button
{
  background-color: #0099FF;
  color: #fff;
  font-size: 1em;
}

