.message{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    padding: 10px 10px 10px 10px;
    border: solid darkblue;
    border-width: 2px 2px;
}

.comment_header_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.message_username{
    font-size: 16px;
    font-weight: bold;
}

.message_content{
    max-width: 100%;
    font-size: 16px;
    word-wrap: break-word;
}

.delete_icon{
    background-image: url("../media/delete-icon.png");
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
}

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