body {
            font-family: Arial, sans-serif;
        }
        .custom-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 9999; 
        }
        .custom-popup-content {
            background: #fff;
            padding: 1px;
            border-radius: 10px;
            text-align: center;
        }
        .custom-popup-content img {
            max-width: 100%;
            height: auto;
        }
        .custom-popup-content p {
            margin: 20px 0;
        }
        .custom-close-button {
            background: #007BFF;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 5px;
            cursor: pointer;
font-size: 28px;
        }