/* Minimal Feather Icons CSS - Just the icons we need */
.feather {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}

/* Edit icon */
.feather.icon-edit::before {
  content: "✏️";
  font-size: 14px;
}

.feather.icon-edit-2::before {
  content: "✏️";
  font-size: 14px;
}

.feather.icon-edit-3::before {
  content: "✏️";
  font-size: 14px;
}

/* Other commonly used feather icons */
.feather.icon-play::before {
  content: "▶️";
  font-size: 12px;
}

.feather.icon-pause::before {
  content: "⏸️";
  font-size: 12px;
}

.feather.icon-stop::before {
  content: "⏹️";
  font-size: 12px;
}

.feather.icon-trash::before {
  content: "🗑️";
  font-size: 14px;
}

.feather.icon-trash-2::before {
  content: "🗑️";
  font-size: 14px;
}

.feather.icon-plus::before {
  content: "➕";
  font-size: 12px;
}

.feather.icon-minus::before {
  content: "➖";
  font-size: 12px;
}

.feather.icon-save::before {
  content: "💾";
  font-size: 14px;
}

.feather.icon-check::before {
  content: "✅";
  font-size: 12px;
}

.feather.icon-check-circle::before {
  content: "✅";
  font-size: 12px;
}

.feather.icon-package::before {
  content: "📦";
  font-size: 12px;
}

.feather.icon-clock::before {
  content: "🕐";
  font-size: 12px;
}

.feather.icon-refresh-cw::before {
  content: "🔄";
  font-size: 12px;
}

.feather.icon-arrow-left::before {
  content: "⬅️";
  font-size: 12px;
}

/* Reset some styles for icons */
.feather.icon-edit::before,
.feather.icon-edit-2::before,
.feather.icon-edit-3::before,
.feather.icon-play::before,
.feather.icon-pause::before,
.feather.icon-stop::before,
.feather.icon-trash::before,
.feather.icon-trash-2::before,
.feather.icon-plus::before,
.feather.icon-minus::before,
.feather.icon-save::before,
.feather.icon-check::before,
.feather.icon-check-circle::before,
.feather.icon-package::before,
.feather.icon-clock::before,
.feather.icon-refresh-cw::before,
.feather.icon-arrow-left::before {
  width: auto;
  height: auto;
  stroke: none;
  fill: none;
}