
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    width: 90vw !important;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}

.modal img {
    max-width: 100%;
    max-height: 600px !important;
    height: auto;
    object-fit: contain;
    /* margin-bottom: 10px; */

}


.close-btn {
    cursor: pointer;
    font-size: 25px;
    position: absolute;
    top: -5px;
    right: 5px;
    z-index: 101;
}



#modal_title {
    font-size: 1.2em;
    margin: 8px 0;
}



@media (max-width: 768px) {

    .modal-content {
        width: 90vh;
        max-width: 500px;
        /* Adjust for mobile */
    }

    .close-btn {
        font-size: 28px;
        top: -5px;
        /* Smaller button on mobile */
    }
}