﻿.comment {
    margin-top: 10px;
    margin-right: 4px;
    user-select: text;
}

.comment-name {
    font-weight: bold;
}

.comment-timestamp {
    color: GrayText;
}

.comment-text {
    color: Black;
    background-color: LightGray;
    padding: 5px;
    border-radius: 3px;
    margin-top: 2px;
    word-wrap: break-word;
    white-space: pre-line;
    width: 100%;
}

.comment-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.input-container {
    padding-top: 20px;
}

/* Memo + Button */
.memo-wrapper {
    position: relative;
}

.memo {
    width: 100%;
    padding-right: 45px;
    box-sizing: border-box;
}

.send-btn {
    position: absolute;
    right: 8px;
    bottom: 8px;
}