.post,
.md-editor {
    border: 1px solid #ccc;
    margin-top: 14px;
}

.post .header {
    border-bottom: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.06);
    padding: 14px;
}

.post .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.post .username {
    display: inline-block;
    font-weight: bold;
}

.post .body,
.md-preview {
    padding: 4px;
    background-color: white;
}

.post .options {
    display: flex;
    flex-direction: row;
    border-top: 1px solid #ccc;
    padding: 8px 12px 8px 12px;
    align-items: center;
}

.post .options .button {
    padding: 4px;
    cursor: pointer;
}

.post .options .button:hover {
    color: #01b3e4;
}

.post .options .like-count {
    margin-right: 4px;
}

.post .options .like-button.liked {
    color: #01b3e4;
}

.post .options .quote-button,
.post .options .close-button {
    margin-left: 12px;
}

.post .options .closed-label {
    margin-left: 12px;
    color: green;
}

.md-editor .menu {
    display: flex;
    flex-direction: row;
    padding: 8px 8px 8px 0;
    border-bottom: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.06);
}
.md-editor .menu .group {
    display: flex;
    flex-direction: row;
    margin-left: 8px;
}
.md-editor .menu .button {
    margin-left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #ccc;
    overflow: hidden;
    cursor: pointer;
}
.md-editor .menu .button:hover {
    color: #01b3e4;
}
.md-editor .md-textarea {
    margin: 0;
    padding: 12px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: 0;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Noto Sans', 'Noto Sans JP', 'Noto Sans KR';
    box-sizing: border-box;
    -webkit-appearance: none;
    resize: vertical;
}
.md-editor .md-textarea:focus {
    outline: none;
}

.forum-button {
    margin: 0;
    margin-top: 8px;
    padding: 0 14px 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #f2f2f2;
    background: -moz-linear-gradient( top, #f2f2f2 0%, #ebebeb 42%, #dddddd 47%, #cfcfcf 100% );
    background: -webkit-linear-gradient( top, #f2f2f2 0%, #ebebeb 42%, #dddddd 47%, #cfcfcf 100% );
    background: linear-gradient( to bottom, #f2f2f2 0%, #ebebeb 42%, #dddddd 47%, #cfcfcf 100% );
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    height: 38px;
    width: fit-content;
    min-width: 100px;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    cursor: pointer;
}

.forum-button:hover {
    outline: none;
    background: #eaf6fd;
    background: -moz-linear-gradient(
        top,
        #eaf6fd 0%,
        #d9f0fc 42%,
        #bee6fd 47%,
        #bce5fc 58%,
        #a7d9f5 100%
    );
    background: -webkit-linear-gradient(
        top,
        #eaf6fd 0%,
        #d9f0fc 42%,
        #bee6fd 47%,
        #bce5fc 58%,
        #a7d9f5 100%
    );
    background: linear-gradient(
        to bottom,
        #eaf6fd 0%,
        #d9f0fc 42%,
        #bee6fd 47%,
        #bce5fc 58%,
        #a7d9f5 100%
    );
    border: 1px solid #3c7fb1;
}

.forum-button:active {
    outline: none;
    box-shadow: inset 0 -1px 6px rgba(0, 0, 0, 0.2), inset 0 -0.7em #bee6fd,
        0 0 3px #a7d9f5;
    -o-box-shadow: inset 0 -1px 6px rgba(0, 0, 0, 0.2), inset 0 -0.7em #bee6fd,
        0 0 3px #a7d9f5;
    -webkit-box-shadow: inset 0 -1px 6px rgba(0, 0, 0, 0.2),
        inset 0 -0.7em #bee6fd, 0 0 3px #a7d9f5;
    -moz-box-shadow: inset 0 -1px 6px rgba(0, 0, 0, 0.2), inset 0 -0.7em #bee6fd,
        0 0 3px #a7d9f5;
}

.forum-button:disabled {
    background: #d3d3d3;
    color: rgba(0, 0, 0, 0.5);
    border: 1px solid #ccc;
    outline: none;
    cursor: not-allowed;
}

.post h1, .post h2, .post h3, .post h4, .post h5, .post h6,
.md-preview h1, .md-preview h2, .md-preview h3, .md-preview h4, .md-preview h5, .md-preview h6,
.post p, .post ul, .post ol, .md-preview p, .md-preview ul, .md-preview ol {
    margin: 16px;
}

.post blockquote,
.md-preview blockquote {
    margin: 16px;
	border-left: 4px solid rgba(1,180,228,.5);
	background-color: rgba(0,0,0,.04);
    padding: 0;
}