.alix-notipop-modal{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
  color:var(--alix-notipop-text);
}
.alix-notipop-modal.is-open{ display:block; }

.alix-notipop-overlay{
  position:absolute;
  inset:0;
  background:var(--alix-notipop-overlay);
}

.alix-notipop-dialog{
  position:relative;
  width:min(var(--alix-notipop-maxw), calc(100% - 28px));
  margin: 10vh auto 0;
  background:var(--alix-notipop-bg);
  border-radius:var(--alix-notipop-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow:hidden;
}

.alix-notipop-content{
  padding:18px 18px 16px;
}

.alix-notipop-title{
  font-size:var(--alix-notipop-title-size);
  font-weight:700;
  margin:0 0 8px;
  line-height:1.25;
}

.alix-notipop-message{
  font-size:var(--alix-notipop-text-size);
  line-height:1.6;
}

.alix-notipop-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.alix-notipop-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background:#111827;
  color:#fff !important;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.alix-notipop-close{
  position:absolute;
  top:10px;
  inset-inline-end:10px;
  width:34px;
  height:34px;
  border-radius:999px;
  border:0;
  background:rgba(17,24,39,.08);
  color:#111827;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.alix-notipop-close:hover{ background:rgba(17,24,39,.14); }
