/* Enlarged Photo Modal */
#enlargedPhotoModal .modal-dialog {
    max-width: 90%;
    margin: 30px auto;
    }
    #enlargedPhotoModal .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
    }
    #enlargedPhotoModal .modal-body {
    position: relative;
    padding: 0;
    }
    #enlargedPhotoModal .modal-body img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
    }
    #enlargedPhotoModal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    }
    #enlargedPhotoModal .close:hover {
    opacity: 0.7;
    }
    #enlargedPhotoModal .modal-dialog, #enlargedPhotoModal .modal-content, #enlargedPhotoModal .modal-body, #enlargedPhotoModal .modal-body img, #enlargedPhotoModal .close {
    pointer-events: auto !important;
    }
    .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 40px);
    /* Adjust the value (40px) to leave space on top and bottom */
    }
    .modal-body img {
    max-height: calc(100% - 40px);
    /* Adjust the value (40px) to leave space on top and bottom */
    max-width: 100%;
    object-fit: contain;
    }