.appprompt-footer {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 12000;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.appprompt-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
}

.appprompt-left { display:flex; flex-direction:column; gap:8px; flex:1; }
.appprompt-title { font-size:14px; font-weight:600; color:#111827; margin-bottom:4px; }
.appprompt-buttons { display:flex; gap:10px; align-items:center; }

.appprompt-btn {
  display:flex; align-items:center; gap:10px; padding:8px 10px; border-radius:10px;
  border:1px solid rgba(0,0,0,0.06); background:#fff; cursor:pointer; min-width:110px;
  font-weight:600; font-size:14px;
}
.appt-primary { background:#0b57d0 !important; color:#fff !important; border-color:rgba(11,87,208,0.9) !important; }
.appt-ghost { background:#f7f7f8 !important; color:#111827 !important; }
.appprompt-icon { width:32px; height:32px; object-fit:cover; border-radius:6px; }

.appprompt-right { margin-left:12px; flex-shrink:0; }
.appprompt-dismiss { background:none; border:none; color:#6b7280; font-size:13px; cursor:pointer; padding:6px 8px; }

@media (max-width:480px) {
  .appprompt-inner { padding:10px; }
  .appprompt-btn { min-width:90px; padding:8px; font-size:13px; }
  .appprompt-footer { left:8px; right:8px; bottom:8px; }
}

/* defensive override so theme doesn't hide text */
.appprompt-footer, .appprompt-footer * { color:inherit !important; }