/* 
 * Text visibility fixes for WhatsApp Campaign Builder
 * Makes all headings darker for better contrast
 */

/* Darken all headings to improve visibility */
.step-title-group h2,
.step-header h2,
.campaign-title h3,
.selected-template-preview h3,
.campaign-summary-preview h3,
.variable-mappers h3,
.variable-preview-panel h3,
.empty-state h3,
.preview-header h3 {
  color: #000000 !important;
  font-weight: 700;
}

/* Ensure section descriptions are visible enough */
.step-description,
.step-header p,
.section-description {
  color: #374151 !important;
}

/* Fix campaign action button icons */
.btn-icon i.fas {
  color: #374151 !important; /* Default icon color */
}

/* Special button icon colors */
.btn-icon.btn-launch i.fas {
  color: #4f46e5 !important; /* Blue for launch/play */
}

.btn-icon.btn-pause i.fas {
  color: #f59e0b !important; /* Orange for pause */
}

.btn-icon.btn-danger i.fas {
  color: #dc2626 !important; /* Red for delete */
}