.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.dialog {
  background: white;
  border-radius: 8px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.message {
  margin: 0 0 24px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cancelButton,
.confirmButton {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cancelButton {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}

.cancelButton:hover {
  background: #e0e0e0;
}

.confirmButton {
  background: var(--color-primary-accent);
  color: #0f172a;
}

.confirmButton:hover {
  background: #6cd2ff;
}

.confirmButton.dangerous {
  background: #c62828;
}

.confirmButton.dangerous:hover {
  background: #ad1457;
}
