.mcl-modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15,23,42,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.mcl-modal{
  width: 100%;
  max-width: 420px;
  background: #0b1220;
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 14px;
  padding: 16px 16px 14px;
  color: #e5e7eb;
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  position: relative;
}

.mcl-modal-close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.mcl-modal-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.mcl-modal-text{
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(229,231,235,0.9);
}

.mcl-modal-actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.mcl-btn{
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
}

.mcl-btn-primary{
  background: #22c55e;
  color: #052e16;
  border-color: #22c55e;
}

.mcl-btn-secondary{
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.35);
}