body, html {
  margin: 0;
  height: 100%;
}

body {
  background: #000;
  color: #c0c0c0;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.tag-line,
nav,
small,
.form-label,
.user-info .username,
.reply-actions,
th {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.5px;
}

a {
  color: #00ffff;
  text-decoration: none;
}

table {
  border: 2px ridge #666;
  background: #111;
}

th {
  background: #222;
  color: #fff;
}

textarea {
  width: 100%;
  box-sizing: border-box;

  background: #000;
  color: #c0c0c0;

  border: 2px inset #666;
  padding: 6px;

  font-family: "Lato", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;

  resize: none;
}

textarea:focus {
  outline: none;
  border-color: #999;
  background: #000;
}

input[type="submit"] {
  background: #222;
  color: #fff;

  border: 2px outset #666;
  padding: 4px 10px;

  font-family: "Lato", system-ui, sans-serif;
  cursor: pointer;
}

input[type="submit"]:active {
  border: 2px inset #666;
}

input[type="email"],
input[type="text"],
input[type="password"] {
  width: 100%;
  box-sizing: border-box;

  background: #000;
  color: #c0c0c0;

  border: 2px inset #666;
  padding: 4px;

  font-family: "Lato", system-ui, sans-serif;
  font-size: 13px;
}

input:focus {
  outline: none;
  border-color: #999;
}

.container {
  width: 780px;
  margin: 0 auto;

  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.form-panel {
  margin: 0 auto;
  border: 3px ridge #666;
  background: #111;
}

.form-panel-header {
  background: #222;
  color: #fff;
  padding: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px groove #666;
}

.form-panel-body {
  padding: 12px;
}

.form-row {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

.user-info {
  background: #1a1a1a;
  border-right: 1px solid #333;
  text-align: center;
  vertical-align: center;
}

.user-info .avatar {
  margin-bottom: 8px;
}

.user-info .username {
  margin-bottom: 4px;
  color: #00ffff;
}

.tag-line {
  font-size: 12px;
  padding-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reply-actions {
  text-align: right;
  margin-top: 6px;
}

.comment-table {
  margin-bottom: 12px;
}

.comment-table td:nth-child(2) {
  vertical-align: top;
  padding-left: 12px;
}

.metadata {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
