#hip-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#hip-popup-content {
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    text-align: center;
}

.hip-image-container {
    position: relative;
    display: inline-block;
}

.hip-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

#hip-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    font-size: 18px;
    color: #fff;
    padding: 4px 8px;
    border-radius: 50%;
    cursor: pointer;
}

#hip-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
}
