
.zbp-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.75);
display:flex;
align-items:center;
justify-content:center;
z-index:999999;
}

.zbp-popup{
width:95%;
max-width:600px;
background:#1c1c1c;
color:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,.5);
animation:zbpShow .3s ease;
}

@keyframes zbpShow{
from{opacity:0;transform:translateY(15px);}
to{opacity:1;transform:translateY(0);}
}

.zbp-header{
display:flex;
justify-content:space-between;
padding:15px 20px;
background:#111;
font-weight:700;
}

.zbp-x{
cursor:pointer;
font-size:24px;
}

.zbp-message{
padding:25px;
line-height:1.8;
font-size:16px;
}

.zbp-actions{
padding:20px;
border-top:1px solid #333;
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
flex-wrap:wrap;
}

.zbp-close{
background:#ffffff;
color:#000000;
border:0;
padding:12px 22px;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

.zbp-close:hover{
opacity:.9;
}
