#td-push-prompt{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:99999;
  display:flex;
  justify-content:center;
  pointer-events:none;
}

.td-push-prompt-card{
  width:min(560px, calc(100% - 28px));
  margin-top:18px;
  background:#fff;
  color:#111827;
  border-radius:2px;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
  padding:24px 24px 20px;
  display:grid;
  grid-template-columns:74px 1fr;
  gap:18px;
  pointer-events:auto;
}

.td-push-prompt-logo{
  width:68px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:26px;
  color:#0f172a;
  border:2px solid #e5e7eb;
}

.td-push-prompt-text strong{
  display:block;
  font-size:17px;
  margin-bottom:6px;
}

.td-push-prompt-text span{
  display:block;
  font-size:15px;
  color:#4b5563;
  line-height:1.45;
}

.td-push-prompt-actions{
  grid-column:2;
  display:flex;
  justify-content:flex-end;
  gap:18px;
  margin-top:14px;
}

.td-push-prompt-actions button{
  border:0;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.04em;
  font-size:14px;
}

.td-push-no{
  background:transparent;
  color:#1976d2;
  padding:10px 12px;
}

.td-push-yes{
  background:#087bdc;
  color:#fff;
  border-radius:4px;
  padding:12px 24px;
}

@media (max-width:640px){
  .td-push-prompt-card{
    grid-template-columns:54px 1fr;
    padding:18px;
  }

  .td-push-prompt-logo{
    width:50px;
    height:42px;
    font-size:20px;
  }

  .td-push-prompt-actions{
    grid-column:1 / -1;
  }
}