/* Aplica color dorado a todo en modo oscuro */
html.dark {
    color: #FFD700 !important;
}

html.dark * {
    color: #FFD700 !important;
}


:root {
    color-scheme: dark !important;
}
html {
    color-scheme: dark !important;
}
html[data-theme="light"] {
    --tw-bg-opacity: 1 !important;
    background-color: #111827 !important; /* fuerza fondo dark incluso si el tema dice 'light' */
    color-scheme: dark !important;
}
