#popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Adjust the value as needed */
}



#popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    text-align: center;
    z-index: 1001; /* Make sure it has a higher value than #popup-container */
    position: relative;
 
}

#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 1000;

}

        .pink-text {
            color: #FF33FF; /* Set the text color for the element with the ID 'blue-text' */
        }





