/**
 * Direct fix for FontAwesome icon display issues
 */

/* FontAwesome icon fix for buttons */
.campaign-actions .btn-icon i.fas {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}

/* Explicit icon definitions as fallback */
.fa-rocket:before {
  content: "\f135" !important;
}

.fa-play:before {
  content: "\f04b" !important;
}

.fa-pause:before {
  content: "\f04c" !important;
}

.fa-times:before {
  content: "\f00d" !important;
}

.fa-edit:before {
  content: "\f044" !important;
}

.fa-copy:before {
  content: "\f0c5" !important;
}

.fa-trash:before {
  content: "\f1f8" !important;
}