/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background overlay for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index:9000;
}

/* Popup content box */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    z-index:9000;
}

/* Close button */
.close-btn {
    position: relative;
    top: -56px;
    left: 137px;
    font-size: 19px;
    cursor: pointer;
    background: azure;
    border-radius: 20px;
}
/* Optional: Add transition effect */
.popup {
    transition: opacity 0.5s ease;
    z-index:9000;
}
