.comment-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-block .title {
    font-size: 24px;
}

.comments {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.comment {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #ccc;
}

.comment.reply {
    margin-top: 10px;
    /* margin-left: 50px; */
    align-self: end;
    border-top: none;
    border-left: 1px solid #ccc;
}

.comment .avatar {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.comment .avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.comment .insides {
    display: flex;
    flex-direction: column;
}

.comment .insides .name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment .insides .name .info {
    font-weight: normal;
    font-size: 12px;
    color: #999;
}

.comment .insides .text {
    margin-bottom: 15px;
}

.comment .insides .attachment {
    width: 95%;
    max-width: 600px;
    border-radius: 8px;
}

.comment .insides .reply-btn {
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #999;    
    align-self: start;
}

.accent-text {
    color: #03ab02;
    font-weight: bold;
}
