/* Hide the pop-up by default */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.7); */     /* ini bg belakang content pop up nya kalau mau dikasih (half-transparent)*/
    /* background-color: rgba(0, 0, 0, 0); */       /* ini (transparent) */
    z-index: 1;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: white; */                  /* ini bg white : bg berlaku kl adv berupa text*/
    /* background-color: rgba(0, 0, 0, 0); */       /* ini bg transparent */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 65px;
    right: 125px;
    font-size: 20px;
    cursor: pointer;
}
