/**
 * Unations Theme - ensures theme is applied consistently
 * Bootstrap 5.3 uses data-bs-theme on html for light/dark.
 * This file provides fallbacks and overrides where needed.
 */
html {
  color-scheme: light;
}

html[data-bs-theme="dark"] {
  color-scheme: dark;
}

html[data-bs-theme="light"] {
  color-scheme: light;
}
