/* Confirm Dialog Styles */
.confirm-dialog {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  animation: dialogFadeIn 0.2s ease;
}

@keyframes dialogFadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirm-dialog-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirm-dialog-icon.danger {
  background: #fee2e2;
  color: #dc2626;
}

.confirm-dialog-icon.warning {
  background: #fef3c7;
  color: #d97706;
}

.confirm-dialog-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.confirm-dialog-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.confirm-dialog-message {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}

.confirm-dialog-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.confirm-dialog-actions .btn {
  min-width: 100px;
}
