/* wld-dialog — custom alert/confirm modal */
#wld-dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#wld-dialog-overlay.wld-visible { display: flex; }
#wld-dialog-box {
  background: #fff;
  border-radius: 14px;
  width: 90%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
#wld-dialog-header {
  padding: 22px 24px 18px;
  text-align: center;
}
#wld-dialog-title {
  font-size: 1rem;
  color: #111;
  margin-bottom: 8px;
}
#wld-dialog-message {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}
#wld-dialog-footer {
  display: flex;
  border-top: 1px solid #e8e8e8;
}
#wld-dialog-footer button {
  flex: 1;
  padding: 15px 10px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  outline: none;
  transition: filter .15s;
}
#wld-dialog-footer button:hover { filter: brightness(1.1); }
#wld-dialog-cancel-btn {
  background: #1a5fa8;
  border-bottom-left-radius: 14px;
  border-right: 1px solid rgba(255,255,255,.15);
}
#wld-dialog-ok-btn {
  background: #E00A4F;
  border-bottom-right-radius: 14px;
}
#wld-dialog-ok-btn.wld-single-btn {
  border-bottom-left-radius: 14px;
  background: #E00A4F;
}
