/*
CSS rules that define sizes and dimensions.
Color, shadows and font related rules are in styles.css
Layout related styles are in index.html
*/

body {
  margin: 0;
  line-height: 1.6em;
  font-size: 16px;
}

.header-bar {
  padding-left: 5px;
}

.header-bar .logo {
  height: 2.5em;
}

.actions button {
  border-width: 0px;
  font-size: 1.2em;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-width: 0px;
  gap: 4px;
}

.actions .label {
  font-weight: 600;
  font-size: 0.8em;
  margin-right: 2px;
  margin-left: 2px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}

.actions .icon {
  font-size: 1.5em;
  margin-right: 2px;
  margin-left: 2px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 4px;
  padding-top: 0px;
}

.actions .separator {
  width: 2px;
}

.chat-panel {
  padding: 0.6em;
  max-width: 600px;
}

.status-panel {
  padding: 0.6em;
  max-width: 900px;
}

.status-content {
  border-radius: 10px;
  padding: 1.3em;
  font-size: 1.2em;
  line-height: 1.7em;
}

.status-content * {
  margin-left: 0em;
  margin-top: 0.1em;
}

.status-content hr {
  width: 100%;
}

.status-content li {
  margin-bottom: 0.4em;
}

.chat-history {
  border-radius: 10px;
  padding: 1em;
  padding-right: 2em;
  margin-bottom: 0.5em;
}

.message {
  border-radius: 5px;
  padding: 0.5em;
  margin-bottom: 1em;
}

.input-area {
  padding: 0.4em 0.6em 0.4em 0.7em;
  border-radius: 10px;
}

.message-entry-field {
  padding: 0;
  margin-right: 0.6em;
  font-size: 1.1em;
  border: none;
}

.submit-button {
    border: none;
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
}

.arrow-icon {
    width: 2.2em;
    height: 2.2em;
}

.footer-bar {
  height: 2em;
  padding: 0.5em;
}
