.app-confirm-overlay {
  align-items: center;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(2px);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 9999;
}

.app-confirm-overlay.is-visible {
  display: flex;
}

.app-confirm-dialog {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.38), 0 8px 24px rgba(15, 23, 42, 0.18);
  max-width: 420px;
  overflow: hidden;
  width: 100%;
}

.app-confirm-header {
  border-bottom: 1px solid #edf1f7;
  padding: 16px 18px 12px;
}

.app-confirm-title {
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.app-confirm-body {
  color: #566276;
  font-size: 14px;
  line-height: 1.45;
  padding: 16px 18px;
}

.app-confirm-actions {
  align-items: center;
  background: #f8fafc;
  border-top: 1px solid #edf1f7;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 18px;
}
