/* Fullscreen overlay */
#wc-popup-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
    display: none;
    z-index: 9999;

    /* Flexbox centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  Popup box */
.wc-popup-content {
    background-color: #ce6276; /* White background */
    color: #ffffff;            /* White text */
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Close button */
.wc-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
}

/* 🖱Hover effect for close button */
.wc-popup-close:hover {
    color: #ff0000;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .wc-popup-content {
        padding: 20px;
        font-size: 16px;
    }

    .wc-popup-close {
        font-size: 28px;
        top: 5px;
        right: 10px;
    }
}
