/* 
 * Button Fix CSS - Loaded Last to Override All Other Styles
 * This file specifically addresses primary button text color issues
 */

/* Force white text on ALL primary buttons with maximum specificity */
html body .btn-primary,
html body .btn-primary *,
html body .btn-primary i,
html body .btn-primary span,
html body a.btn-primary,
html body a.btn-primary *,
html body a.btn-primary i,
html body a.btn-primary span,
html body button.btn-primary,
html body button.btn-primary *,
html body button.btn-primary i,
html body button.btn-primary span,
html body .light-theme .btn-primary,
html body .light-theme .btn-primary *,
html body .light-theme .btn-primary i,
html body .light-theme .btn-primary span,
html body .section-header .btn-primary,
html body .section-header .btn-primary *,
html body .section-header .btn-primary i,
html body .section-header .btn-primary span,
html body .content-section .btn-primary,
html body .content-section .btn-primary *,
html body .content-section .btn-primary i,
html body .content-section .btn-primary span {
    color: white !important;
    text-shadow: none !important;
}

/* Override any CSS variables that might be affecting button text */
.btn-primary {
    --bs-btn-color: white !important;
    --text-primary: white !important;
    --text-secondary: white !important;
}

/* Specific fix for dashboard "View All" buttons */
[href*="/sequences/"].btn-primary,
[href*="/campaigns/"].btn-primary,
[href*="/analytics/"].btn-primary {
    color: white !important;
}