/* ============================
POPUP MESSAGE
============================ */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    animation:fadeIn .25s ease;
}

.popup-box{
    background:#fff;
    border-radius:12px;
    max-width:420px;
    width:90%;
    padding:28px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
    font-family:Poppins, Arial, sans-serif;
}

.popup-title{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    color:#903d98;
}

.popup-message{
    font-size:15px;
    color:#555;
    margin-bottom:20px;
    line-height:1.5;
}

.popup-btn{
    background:#903d98;
    color:#fff;
    border:none;
    padding:10px 22px;
    border-radius:6px;
    cursor:pointer;
    font-size:14px;
}

.popup-btn:hover{
    background:#7d2f84;
}

@keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
}