a {
    cursor: pointer;
    color: rgb(147 51 234);
}
a:focus, a:hover {
    color: rgb(75 85 99);
}
.button {
    display: inline-block;
    flex: none;
    appearance: none;
    white-space: nowrap;
    border-radius: 0.25rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.25rem;
    color: rgb(147 51 234);
    cursor: pointer;
}
.button:focus, .button:hover {
    color: rgb(75 85 99);
}
.button[disabled] {
    cursor: default;
    opacity: 0.5;
}
.toolbar {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    display: flex;
    justify-content: end;
    width: 100%;
    column-gap: 0.25rem;
}
.toolbar .button {
    background-color: rgb(147 51 234);
    color: rgb(255 255 255);
}
.toolbar .button.action-back {
    background-color: rgb(219 39 119);
}
.toolbar .button.action-wait {
    background-color: rgb(217 119 6);
}
.toolbar .button.action-forward {
    background-color: rgb(147 51 234);
}
.comment {
    width: 100%;
    display: flow-root;
    border-radius: 0.25rem;
}
.comment .gravatar-button {
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
}
.comment .my-avatar {
    float: right;
    margin-left: 0.5rem;
}
.comment .other-avatar {
    float: left;
    margin-right: 0.5rem;
}
.comment .comment-date {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(107 114 128);
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.comment .user-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.comment form {
    padding-bottom: 0px;
}
.comment.comment-folded {
    border-bottom-width: 4px;
    border-style: dashed;
}
.comment.comment-folded .toolbar {
    display: none;
}
.comment.comment-folded .user-content {
    display: none;
}
.comment.comment-highlighted {
    border-width: 4px;
    border-style: double;
    border-color: rgb(147 51 234);
    padding-bottom: 0px;
}
.comment.comment-highlighted .toolbar {
    display: flex;
}
.comment.comment-highlighted .user-content {
    display: block;
}
.comment-regular {
    background-color: rgb(255 251 235);
}
.comment-private {
    background-color: rgb(253 244 255);
}
.comment-pending {
    background-color: rgb(248 250 252);
}
textarea.editor {
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: rgb(75 85 99);
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    height: 6rem;
    margin-bottom: 0px;
    box-sizing: border-box;
}
div.alert-info {
    display: block;
    width: 100%;
    border-radius: 0.25rem;
    background-color: rgb(254 249 195);
    padding: 0.5rem;
    color: rgb(29 78 216);
}
@media (min-width: 512px) {
    .comment .user-content {
	padding-left: 2rem;
	padding-right: 2rem;
    }
}
