.post_comment {
    height: 40px;
    width: 40px;
    background-color: rgb(141, 180, 230);
    background-image: url("../media/comment.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    margin-right: 20px;
}

.post_comment:hover {
    background-image: url("../media/comment-hover.png");
}

#comments_section {
    display: none;
    flex-direction: column;
    justify-self: center;
    background-color: rgb(141, 180, 230);
    border-radius: 0 10px 10px 0;
    border: 3px black solid;
    border-left: 0;
    width: 300px;
    height: 100%;
}

.comments_header {
    color: black;
    font-family: "Courier New";
    font-size: 24px;
    align-self: flex-start;
    margin: 10px;
}

.comments {
    display: flex;
    flex-direction: column;
    height: 500px;
    border-top: 3px black solid;
    border-bottom: 3px black solid;
    overflow-y: auto;
}

.comment {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-bottom: 3px black solid;
}

.comment_content {
    width: 100%
}

.comment_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment_content {
    display: flex;
    flex-direction: row;
}

.comment_author {
    margin: 0;
    color: black;
    font-family: "Courier New";
    font-size: 18px;
}

.comment_date {
    margin: 0;
    color: black;
    font-family: "Courier New";
    font-size: 12px;
}

.content {
    width: 100%;
    max-width: 350px;
    margin: 5px 5px 5px 10px;
    color: black;
    font-family: "Courier New";
    font-size: 16px;
    overflow-wrap: break-word;
}

.comment_delete {
    height: 25px;
    width: 25px;
    background-color: rgb(141, 180, 230);
    background-image: url("../media/delete.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    justify-self: center;
    align-self: center;
}

.comment_delete:hover {
    background-image: url("../media/delete-hover.png");
}

#comment_form {
    display: flex;
    flex-direction: column;
    margin: 5px;
}

.comment_input {
    padding-left: 10px;
    height: 20px;
    border: 3px rgb(45, 103, 153) solid;
    border-radius: 5px;
    font-size: 20px;
    font-family: "Courier New";
    color: rgb(45, 103, 153);
    margin-bottom: 5px;
}

.comment_input:focus {
    outline: none;
}

.comment_input::placeholder {
    color: rgb(45, 103, 153);
}

.comment_submit_button {
    background-color: white;
    color: rgb(45, 103, 153);
    border-radius: 5px;
    text-align: center;
    border: 3px rgb(45, 103, 153) solid;
    padding: 5px 10px 5px 10px;
}

.comment_submit_button:hover {
    background-color: rgb(45, 103, 153);
    color: white;
}


.page_up_btn {
    display: flex;
    height: 30px;
    margin: 3px 10px 3px 10px;
    background-image: url("../media/page-up.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 3px rgb(45, 103, 153) solid;
    border-radius: 5px;
}

.page_up_btn:hover {
    background-color: rgb(45, 103, 153);
    color: white;
}

.page_down_btn {
    display: flex;
    height: 30px;
    margin: 3px 10px 0 10px;
    background-image: url("../media/arrow-down-sign-to-navigate.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 3px rgb(45, 103, 153) solid;
    border-radius: 5px;
}

.page_down_btn:hover {
    background-color: rgb(45, 103, 153);
    color: white;
}