.image-comment-container {
    display: flex;
    justify-content: center;
    column-gap: 5vw;
    background-color: #F8F9FA;
}
.display-image-container {
    display: flex;
    flex-direction: column;
}
.display-image {
    width: 480px;
    height: 480px;
}
.display-image-title {
    font-size: 32px;
    margin: 0;
}
.display-image-author {
    margin: 0;
    font-size: 16px;
}
.comment-container {
    display: flex;
    flex-direction: column;
    border: 2px solid #212529;
}
.add-comment-form {
    display: flex;
    flex-direction: column;
}
#post-comment-text {
    max-width: 300px;
    min-width: 300px;
    max-height: 200px;
    min-height: 100px;
    height: 100px;
}
.comment-section {
    display: flex;
    flex-direction: column;
    overflow: auto; /* https://stackoverflow.com/questions/21515042/scrolling-a-flexbox-with-overflowing-content */
    height: 60vh;
}
.comment {
    border-bottom: 1px solid gray;
    margin-left: 10px;
    margin-right: 10px;
}
.comment-author {
    font-size: 24px;
    margin-bottom: 0;
}
.comment-date {
    font-size: 12px;
    margin:0;
}
.button-style {
    border: 2px solid #212529;
    color: #F8F9FA;
    background-color: rgba(220, 190, 135, 0.766);
    cursor: pointer;
}
.button-style:hover {
    background-color: #F8F9FA;
    color: rgba(220, 190, 135, 0.766);
}
.display-previous-comments {
    color: #F8F9FA;
    background-color: rgba(220, 190, 135, 0.766);
    border-top: 2px solid black;
}
.display-previous-comments:hover {
    background-color: #F8F9FA;
    color: rgba(220, 190, 135, 0.766);
}
.display-next-comments {
    color: #F8F9FA;
    background-color: rgba(220, 190, 135, 0.766);
    border-bottom: 1px solid black;
}
.display-next-comments:hover {
    background-color: #F8F9FA;
    color: rgba(220, 190, 135, 0.766);
}
.display-image-btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: -35vh;
    margin-bottom: 30vh;
}
.display-previous-image-btn {
    background-image: url("../media/back.png");
    background-size: cover;
    background-position: center;
    width: 50px;
    height: 50px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: transparent;
}
.display-previous-image-btn:hover {
    transform: scale(1.2);
}
.display-next-image-btn {
    background-image: url("../media/forward.png");
    background-size: cover;
    background-position: center;
    width: 50px;
    height: 50px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: transparent;
}
.display-next-image-btn:hover {
    transform: scale(1.2);
}
.delete-image-btn {
    width: max-content;
    margin-top: 4px;
    background-color: #EF4444;
    color: #F8F9FA;
    border: 2px solid #212529;
    cursor: pointer;
}
.delete-image-btn:hover {
    background-color: #F8F9FA;
    color: #EF4444;
}
.delete-comment-btn {
    background-image: url("../media/trash.png");
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    margin-top: 24px;
}
.comment-delete-btn-container {
    display: flex;
    justify-content: space-between;
}