.image-modal {
    cursor: pointer;
    object-fit: cover;
    max-height: 250px;
}

#imageModal.modal {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
}

#imageModal.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

#imageModal .modal-content {
    width: unset;
    display: block;
    margin: 1rem;
}
  
#imageModal .modal-close {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

#imageFull {
    max-height: 90vh;
}