/* Conteneur (caché par défaut) */
#.apb-soon-modal[aria-hidden="true"] { display: none; }
.apb-soon-modal[aria-hidden="false"] { display: block; }

/* Backdrop plein écran */
.apb-soon-backdrop{
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 10050;
}

/* Boîte de dialogue */
.apb-soon-dialog{
  position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(560px, 92vw);
  background: #fff; color: #111; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  z-index: 10060; padding: 18px 20px;
}
.apb-soon-title{ margin: 0 0 8px; font-size: 1.35rem; }
.apb-soon-body{ line-height: 1.45; white-space: pre-line; }
.apb-soon-actions{ margin-top: 14px; display: flex; justify-content: flex-end; gap: .5rem; }
.apb-soon-ok, .apb-soon-close{
  border: 1px solid #111; background: #fff; color:#111;
  border-radius: 8px; padding: 6px 12px; font-weight: 600; cursor: pointer;
}
.apb-soon-close{
  position:absolute; right:10px; top:10px; border:0; font-size: 20px; padding:4px 10px;
}
.apb-soon-ok:hover{ background: #111; color: #fff; }
#apb-soon-modal[aria-hidden="true"] { display: none; }
#apb-soon-modal.is-open { display: block; }
.apb-soon-lock { overflow: hidden; }
.apb-soon-modal { z-index: 2000; } /* au-dessus du header sticky et du footer fixe */
