.dashboard-wrapper {
    .dashboard {
        div#draft-list {
            display: flex;
            width: max-content;
            margin-left: auto;
            margin-right: auto;

            border: 1px solid #444;
            border-radius: 0.5em;
            padding-block: 0.25em;
            padding-inline: 0.5em;

            a {
                white-space: nowrap;
                border-left: 1px solid #444;
                padding-inline: 1em;
                text-align: center;
                text-decoration: none;
                cursor: pointer;

                &:first-child {
                    border-left: 0;
                }

                &:hover {
                    background-color: #333;
                }

                &.selected {
                    background-color: #383838;
                    cursor: unset;
                    font-weight: 700;
                    color: rgb(185, 199, 211);
                }
            }
        }

        div#comments-wrapper {
            border: 1px solid #444;
            width: 100%;
            padding: 0.5em;

            #comments-container {
                min-height: 12rem;
                max-height: 24rem;
                overflow-y: scroll;
            }

            .comment {
                margin-bottom: 1em;

                .author {
                    font-weight: 700;
                }

                .time {
                    color: #AAA;
                    font-size: 75%;
                }

                .op {
                    background-color: rgb(216, 216, 255);
                    color: var(--color-bg);
                    padding-inline: 0.25em;
                    border-radius: 0.375em;
                    font-size: 90%;
                }

                img {
                    height: 1em;
                    vertical-align: middle;
                }
            }

            #comments-field-container {
                textarea {
                    height: 4em;
                    box-sizing: border-box;
                    
                    border: 1px solid #666;

                    resize: none;
                }

                button {
                    width: 100%;
                    font-size: 12pt;
                }
            }
        }

        div.final-wrapper {
            > * {
                text-align: center;
                margin-block: 1em;
                margin-left: auto;
                margin-right: auto;
            }

            .final-draft {
                color: #56ff64;
            }
        }
    }
}

span.lfc {
    padding-inline: 0.5em;
    margin-right: 0.5em;
    border: 2px solid #EEE;
}
