/* PaMi2024 Modal Styles */
#PaMi2024_modal_container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%; /* Reduced size */
    max-width: 359px; /* 50% of the original image width */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: right 0.4s ease-in-out;
    overflow: hidden;
}

#PaMi2024_modal_image {
    max-width: 90%; /* Ensure responsiveness */
    max-height: 90%; /* Ensure responsiveness */
    border-radius: 8px;
    cursor: pointer;
}

#PaMi2024_modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100000;
}

#PaMi2024_modal_close:hover {
    background: red;
}
