.push-widget{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.push-btn{
  appearance:none;
  border:0;
  border-radius:10px;
  padding:12px 16px;
  cursor:pointer;
  font-size:15px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition: transform .05s ease, opacity .2s ease;
}

.push-btn-primary:hover{
  filter: brightness(0.95);
}

.push-btn:active{ transform: scale(.99); }
.push-btn:disabled{ opacity:.75; cursor:default; }

.push-btn-primary{
  background: #eb0045;
  color:#fff;
  min-width: 280px;
}

.push-btn-ghost{
  background:#fff;
  border:1px solid #ddd;
  color:#222;
}

.push-status{
  width:100%;
  font-size:13px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid transparent;
}

.push-ok{ background:#eaffea; border-color:#bde5bd; color:#145a14; }
.push-warn{ background:#fff8e6; border-color:#ffe0a1; color:#6a4b00; }
.push-info{ background:#eef5ff; border-color:#c7dcff; color:#113a7a; }

/* 1) Marco externo (borde) como tarjeta */
.push-widget{
  width: 100%;
  box-sizing: border-box;

  border: 1px solid #e9e9e9;
  border-radius: 14px;

  padding: 14px;
  background: #fff;

  /* Centrado */
  justify-content: center;
}

/* 2) Botón a lo ancho del contenedor */
.push-btn{
  width: 100%;
  box-sizing: border-box;
}

/* 3) Quita el min-width que empuja a un costado */
.push-btn-primary{
  min-width: 0;
}

/* Cuando ya está suscrito (botón deshabilitado) mantener el mismo color sólido */
.push-btn-primary:disabled{
  background: #243746;
  opacity: 1;
}

