/* Theme Fixes - Applied to ALL domains (white-label and non-white-label) */
/* This file ensures text is always readable regardless of background color */

/* =================================================================
   WHITE/LIGHT BACKGROUND TEXT FIX
   ================================================================= */

/* Ensure white/light backgrounds always have dark text */
/* This prevents white-on-white or light-on-light text issues */
.bg-white,
.bg-gray-50,
.bg-gray-100,
.bg-gray-200 {
    color: var(--text-color, #111827) !important;
}

/* Form inputs should also have dark text */
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
    color: #111827 !important;
}
