#despopopup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

#despopopup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 90%;
    max-height: 90vh;
    display: none;
}

#despopopup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10000;
}

#despopopup-close:hover {
    background: #f44336;
    color: #fff;
    transform: rotate(90deg);
}

#despopopup-content {
    position: relative;
}

#despopopup-content a {
    display: block;
}

#despopopup-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
