.sgpi-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}
.sgpi-modal{
  width:100%;
  max-width:720px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  border:1px solid rgba(32,5,150,0.15);
  padding:22px;
}
.sgpi-modal{position:relative}
.sgpi-modal h3{margin-bottom:8px;color:var(--primary-color)}
.sgpi-modal p{color:var(--muted-text);margin-bottom:14px}
.sgpi-close-btn{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border:none;
  background:rgba(0,0,0,0.06);
  color:#555;
  font-size:24px;
  cursor:pointer;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s ease;
}
.sgpi-close-btn:hover{background:rgba(0,0,0,0.1);color:#000}

