.dg-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.dg-confirm-overlay[hidden] {
  display: none !important;
}

.dg-confirm-sheet {
  width: 100%;
  max-width: 320px;
  background: #292a2c;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.dg-confirm-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 24px;
  width: 100%;
}

.dg-confirm-msg {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: center;
  width: 100%;
}

.dg-confirm-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  padding-top: 8px;
}

.dg-confirm-actions button {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
}

.dg-confirm-cancel {
  background: #555659;
  color: #fff;
}

.dg-confirm-ok {
  background: #ff1290;
  color: rgba(255, 255, 255, 0.9);
}

body.dg-confirm-open {
  overflow: hidden;
}
