/**
 * Theme text visibility overrides for dark backgrounds (#0a0f1a, #0f172a).
 * Brightens gray/slate text for better readability.
 */

/* Base body text */
body {
    color: #e2e8f0;
}

/* Override Tailwind gray/slate text for dark theme */
.text-gray-500 { color: #94a3b8 !important; }
.text-gray-400 { color: #cbd5e1 !important; }
.text-gray-300 { color: #e2e8f0 !important; }
.text-slate-500 { color: #94a3b8 !important; }
.text-slate-400 { color: #cbd5e1 !important; }
.text-slate-300 { color: #e2e8f0 !important; }

/* Labels and secondary text */
.text-slate-600 { color: #94a3b8 !important; }
.text-gray-600 { color: #94a3b8 !important; }
