#img-display {
  margin-top: 20px;
  padding: 10px 10px 10px 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 15px;
}

.img_wrapper {
  border: 2px #3c3d3f solid;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding: 20px 20px 20px 20px;
  text-align: center;
  background-color: aliceblue;
}

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

.seperator {
  height: 2px;
  background-color: black;
  width: 100%;
  margin: 20px 0;
}

.curr_img {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

#add-comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
}

#comment_wrapper {
  grid-column: 2 / span 4;
}

#comment_btn_wrapper {
  padding: 20px 10px 10px 10px;
  grid-column: 6;
}

.comment_line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

#comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment_container {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.curr_img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  height: auto;
  object-fit: contain;
}

.nav_comments_wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.nav_comments {
  align-items: center;
  display: flex;
  flex-direction: column;
}
