/* Color scheme based on brand guidelines */

/* Primary color - dark text on light backgrounds */
.text-primary {
    color: #212121 !important;
}
.bg-primary {
    background-color: #212121 !important;
    color: white !important;
}

/* Secondary color - dark text on colored backgrounds */
.text-secondary {
    color: #EC571C !important;
}
.bg-secondary {
    background-color: #EC571C !important;
    color: #212121 !important;
}

/* Light text color */
.text-light {
    color: #757575 !important;
}
.bg-text-light {
    background-color: #757575 !important;
    color: white !important;
}

/* Highlight colors */
.highlight-a {
    background-color: #c6d300 !important;
    color: #212121 !important;
}

.highlight-b {
    background-color: #74C7D9 !important;
    color: #212121 !important;
}

.highlight-c {
    background-color: #644a98 !important;
    color: white !important;
}

/* Default text colors */
body {
    color: #212121;
}

h1, h2, h3, h4, h5, h6 {
    color: #212121;
}

/* Override any dark mode colors */
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6,
.dark p, .dark span, .dark div {
    color: inherit;
}
