.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 60%; /* Adjusted for responsiveness */
    height: 70%; /* Adjusted for responsiveness */
    background-color: rgba(0, 0, 0, 0.8);
   /* Centers the modal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 10px;
	/* text-align: justify; */
	/* margin: auto; */
	margin-left: 250px;
	margin-top: 100px;

}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .image-modal {
        width: 65%;
        height: auto;
        margin: auto;
    }

    .close {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
	.image-modal {
        width: 80%;
        height: auto;
		/* border: 2px solid red; */
		margin: auto;
		margin-left: 10%;
		margin-top: 55%;
    }

    .close {
        font-size: 20px;
        top: 5px;
        right: 10px;
    }
}
