/* Application CSS entrypoint */
/* No core styles defined here yet. */

/* Force light theme and black text for admin panels/components that use "dark" classes
	 This overrides .dark, [data-theme="dark"] and Bootstrap's [data-bs-theme="dark"].
	 Use carefully — it's a global override to make panels lighter and text black.
*/
:root{color-scheme:light}
html,body{background-color:#ffffff!important;color:#000000!important}

/* Neutralize dark-theme wrappers */
.dark, [data-theme="dark"], [data-bs-theme="dark"], [data-theme='dark']{
	background-color: #ffffff !important;
	color: #000000 !important;
}

/* Force children text and borders to dark/neutral colors */
.dark * , [data-theme="dark"] * , [data-bs-theme="dark"] * , [data-theme='dark'] * {
	color: #000000 !important;
	background-color: transparent !important;
	border-color: rgba(0,0,0,0.12) !important;
}

/* Specific quick fixes for common utility classes used throughout the app */
.dark .text-white{color:#000000 !important}
.dark .bg-white, .dark .bg-neutral-800{background-color:#ffffff !important}

