/* Custom ActiveAdmin Styles */

/* Replace action link text with icons */
.table_actions a.view_link {
  font-size: 0;
}

.table_actions a.view_link::before {
  content: "👁";
  font-size: 16px;
  display: inline-block;
}

.table_actions a.edit_link {
  font-size: 0;
}

.table_actions a.edit_link::before {
  content: "✏️";
  font-size: 16px;
  display: inline-block;
}

.table_actions a.delete_link {
  font-size: 0;
}

.table_actions a.delete_link::before {
  content: "🗑";
  font-size: 16px;
  display: inline-block;
}

/* Add some spacing between icon buttons */
.table_actions a {
  margin: 0 4px;
  text-decoration: none;
}

/* Hover effects for icons */
.table_actions a:hover::before {
  opacity: 0.7;
}
