/* Text Color Fixes */

/* Fix for text-muted in profile header */
.profile-header .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix for any other light text on dark backgrounds */
.bg-primary .text-muted,
.bg-secondary .text-muted,
.bg-dark .text-muted,
.bg-info .text-muted,
.bg-success .text-muted,
.bg-danger .text-muted,
.bg-warning .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix for bio text in profile header */
.profile-header p {
    color: white;
}

/* Fix for lead text in profile header */
.profile-header .lead {
    color: white;
}

/* Fix for headings in profile header */
.profile-header h1, 
.profile-header h2, 
.profile-header h3, 
.profile-header h4, 
.profile-header h5, 
.profile-header h6 {
    color: white;
}
