#siteUiModal {
  position: fixed;
  inset: 0;
  z-index: 100300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
#siteUiModal.is-open {
  display: flex;
  pointer-events: auto;
}
.site-ui-modal__panel {
  width: min(100%, 400px);
  border-radius: 14px;
  overflow: hidden;
  background: #141b2d;
  color: #eef2ff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-ui-modal__head {
  padding: 14px 16px;
  background: linear-gradient(135deg, #d82d28, #ff7a45);
}
.site-ui-modal__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.site-ui-modal__body {
  padding: 18px 16px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.site-ui-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 16px 16px;
}
.site-ui-modal__btn {
  height: 40px;
  min-width: 88px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}
.site-ui-modal__btn--cancel {
  background: #2a3348;
  color: #eef2ff;
}
.site-ui-modal__btn--ok {
  background: #d82d28;
  color: #fff;
}
