#pcs-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    display:none;
    z-index:9998;
}

#pcs-popup {
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background:#fff;
    padding:25px;
    width:350px;
    max-width:90%;
    border-radius:12px;
    text-align:center;
    display:none;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

/* CLOSE */
#pcs-close {
    position:absolute;
    top:10px;
    right:15px;
    cursor:pointer;
    font-size:20px;
}

/* CONTENT STYLING */
#pcs-popup h2 {
    margin:0 0 10px;
}

#pcs-popup p {
    font-size:14px;
    color:#666;
}

/* INPUT */
#pcs-popup input {
    width:100%;
    padding:10px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:6px;
}

/* BUTTON */
#pcs-popup button {
    width:100%;
    background:#4f46e5;
    color:#fff;
    padding:10px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
}

#pcs-popup button:hover {
    background:#4338ca;
}

/* RESULT */
#pcs-result {
    margin-top:10px;
    font-weight:bold;
}