.pushroi-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.45);
display: flex;
align-items: center;
justify-content: center;
z-index: 999999;
animation: pushroiFade .25s ease;
}
.pushroi-modal {
background: #ffffff;
border-radius: 16px;
padding: 32px;
width: 420px;
max-width: 90%;
text-align: center;
box-shadow: 0 30px 60px rgba(0,0,0,.15);
font-family: -apple-system,BlinkMacSystemFont,sans-serif;
animation: pushroiScale .25s ease;
}
.pushroi-modal h2 {
margin: 0 0 10px;
font-size: 26px;
color: #111;
}
.pushroi-modal p {
margin: 0 0 22px;
color: #555;
font-size: 16px;
} .pushroi-actions {
display: flex;
gap: 12px;
justify-content: center;
}
.pushroi-allow {
background: #3b82f6;
color: #fff;
border: none;
padding: 14px 20px;
border-radius: 10px;
font-weight: 600;
cursor: pointer;
transition: .2s;
}
.pushroi-allow:hover {
background: #2563eb;
}
.pushroi-close {
background: transparent;
border: 1px solid #e5e7eb;
color: #444;
padding: 14px 20px;
border-radius: 10px;
cursor: pointer;
transition: .2s;
}
.pushroi-close:hover {
background: #f3f4f6;
}
@keyframes pushroiFade {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes pushroiScale {
from { transform: scale(.9); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}