.image-display {
  margin: auto;
  width: 80%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.image-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 75%;
}

#image {
  width: 75%;
  align-self: center;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

#image-next {
  background-image: url("../media/arrow-forward.png");
  height: 36px;
  width: 36px;
}

#image-prev {
  background-image: url("../media/arrow-back.png");
  height: 36px;
  width: 36px;
}

#image-prev:disabled {
  background-image: url("../media/arrow-back-disabled.png");
  cursor: not-allowed;
}

#image-next:disabled {
  background-image: url("../media/arrow-forward-disabled.png");
  cursor: not-allowed;
}

#image-author {
  color: #fff;
  height: fit-content;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
}

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

.image-metadata {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 75%;
}

@media screen and (max-width: 950px) {
  .image-controls {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .image-controls {
    gap: 5px;
  }
}
