.comment-box {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
}

.comment-user {
    display: flex;
    align-items: center;
    margin-right: 15px;
    text-align: center;
    min-width: 70px;
    max-width: 100px;
    overflow: hidden;
}

.comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    margin-right: 12px;
}

.comment-username {
    font-size: 14px;
    font-weight: normal;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.comment-content {
    flex-grow: 1;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    max-width: calc(100% - 100px);
}

.comment-content p {
    margin: 5px 0;
}

.comment-content small {
    color: #777;
}

.add-comment .d-flex {
    align-items: center;
}

.add-comment .comment-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 12px;
}

.add-comment .comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.add-comment .comment-username {
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
    text-align: center;
}

