#image-container{
    margin: 20px auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    border: 2px #f5f5f533 solid;
    flex: 1; 
    width: 40%; 
    min-height: 500px;
    margin: 0;
    align-items: center;
    gap: 15px;
}

.image {
  min-width: 550px;
  max-width: 500px;
  max-height: 600px;     
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;     
}

.content-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin: 10px 10px;
}

.content-section .btn{
    width: 100px;
    padding: 4px 0;
}

.icon {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
}

.previous-icon{
    background-image: url("../media/left-arrow.png");
}

.next-icon{
    background-image: url("../media/right-arrow.png");
}

.up-icon{
    background-image: url("../media/up-arrow.png");
}

.down-icon{
    background-image: url("../media/down-arrow.png");
}

.delete-icon{
    background-image: url("../media/delete.png");
    width: 30px;
    height: 30px;
}

#comment-section {
  flex: 1; 
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #f5f5f533;
  min-height: 500px;
}

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

#comments{
  display: flex;
  flex-direction: column;
}

.comment {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 20px;
}

.comment-text{
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;   
}

.comment-author{
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.comment-content{
    font-size: 16px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.comment-info{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.comment-date{
  font-size: 12px;
}

.scroll-icons{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-right: 10px;
}