.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in forwards;
}

.popup-show {
    display: flex;
}

/* Style for popup container */
.popup {
    position: relative;
    background: linear-gradient(25deg, #2600fc, #ff00ea); -webkit-tap-highlight-color: transparent; /* White background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); /* Box shadow for depth */
    padding: 8px;
    width: 600px;
    height: 90vh; /* Adjust the maximum width as needed */
    overflow: auto; /* Enable scrolling if content exceeds container size */
}

/* Style for iframe container */
.iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Style for iframe */
iframe {
    width: 100%;
    height: 100%;
    border: none; /* Remove border around iframe */
}

/* Style for close button */
.close-popup-btn {
    position: absolute;
    top: 18px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
    color: black;
    z-index: 10;
}

/* Adjust close button color and size */
.close-btn:hover {
    color: #ff0000; /* Red color on hover */
}