html.dcmb-locked,
body.dcmb-locked {
  overflow: hidden !important;
}

.dcmb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dcmb-card {
  width: min(560px, 100%);
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.dcmb-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
  margin-bottom: 8px;
}

.dcmb-text {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 14px;
  white-space: pre-wrap;
}

.dcmb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dcmb-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 10px;
  height: 38px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dcmb-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dcmb-btn--primary {
  border-color: rgba(37, 99, 235, 0.55);
  background: rgba(37, 99, 235, 0.9);
}

.dcmb-btn--primary:hover {
  background: rgba(37, 99, 235, 1);
}

