/* Basic styling for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 100px;
    top: 100px;
    width: 50%; /* Full width */
    height: 50%; /* Full height */
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.close:hover {
    color: red;
}