main {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}

#title {
  color: sandybrown;
  font-weight: 700;
  user-select: none;
  -webkit-user-select: none;
  margin-bottom: 20px;
  cursor: pointer;
}

#title:hover {
  font-weight: 700;
  filter: brightness(90%);
}

pre {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
}

#subject {
  padding: 10px 20px;
  border: 1px solid #333;
  font-size: 14px;
}

#created::before, #views::before {
  content: "|";
  margin-right: 5px;
  color: #555;
}

#meta {
  padding: 10px 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  user-select: none;
  -webkit-user-select: none;
}

.hosusang:first-letter {
  color: #6495ed;
  font-weight: 700;
}

.comalove:first-letter {
  color: #ee3e3e;
  font-weight: 700;
}

pre#content {
  padding: 0 20px;
}

table#related {
  margin-top: 20px;
  border-collapse: collapse;
  font-size: 13px;
  vertical-align: center;
  user-select: none;
  -webkit-user-select: none;
  border-bottom: 2px solid #555;
}

th, td {
  padding: 5px;
  text-align: center;
}

th {
  border-top: 2px solid #555;
  border-bottom: 2px solid #555;
}

td {
  border-bottom: 1px solid #555;
  color: #333;
}

.article-title {
  text-align: left;
  cursor: pointer;
  text-overflow: ellipsis;
  max-width: 380px;
  overflow: hidden;
  white-space: nowrap;
}

.article-title:hover {
  color: #000;
  font-weight: 700;
}

#content {
  padding: 20px;
  font-size: 13px;
  word-break: break-word;
}

#article {
  border-bottom: 1px solid #aaa;
}

#comments {
  padding: 5px; 
  border-bottom: 1px solid #aaa;
  color: #333;
}

.comment-wrap {
  display: flex;
  font-size: 13px;
}

.comment-right {
  padding: 10px 10px 5px 10px;
}

.comment-author-wrap {
  background-color: #eee;
  width: 150px;
  padding: 10px;
  user-select: none;
  -webkit-user-select: none;
}

.comment-author-wrap > div {
  width: fit-content;
  word-break: break-all;
}

.comment-content {
  width: 500px;
}

.comment-wrap {
  border-bottom: 1px solid #aaa;
}

.comment-wrap:last-child {
  border-bottom: none;
}

.comment-meta {
  text-align: right;
  font-size: 11px;
  user-select: none;
  -webkit-user-select: none;
}

.comment-manage {
  cursor: pointer;
}

.comment-manage > span:hover {
  color: #000;
  font-weight: 700;
}

#float-toolbar {
  list-style-type: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
}

.tool-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #eee;
  border-radius: 15px;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

#back-to-board {
  background-color: inherit;
}

#scroll-bottom {
  transform: rotate(180deg);
}

.tool-btn:hover {
  color: #000;
  filter: brightness(80%);
}