/* styles.css */
.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999991000;
    }
    
    .image-popup-container {
        position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    padding: 0;
    text-align: center;
    }
    
    .image-popup-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    cursor: zoom-in;
    }
    
    .image-popup-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    }
    
    .image-popup-controls button {
    margin-left: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    }
    
    .image-popup-controls button:hover {
    color: #aaa;
    }