/* Override ULTRA AGRESSIVO para forçar tema verde */
html, body, #root, div, section, main, article {
    background-color: #3BAC65 !important;
    background: #3BAC65 !important;
    color: #C4FFD9 !important;
}

/* Forçar em TODOS os elementos */
* {
    background-color: #3BAC65 !important;
    background: #3BAC65 !important;
    color: #C4FFD9 !important;
}

/* Override para qualquer tema existente */
html[theme] body,
html[theme] #root,
html[theme="blue"] body,
html[theme="blue"] #root,
html[theme="black"] body,
html[theme="black"] #root,
html[theme="green"] body,
html[theme="green"] #root,
html[theme="oilyGreen"] body,
html[theme="oilyGreen"] #root,
html[theme="whiteGreen"] body,
html[theme="whiteGreen"] #root {
    background-color: #3BAC65 !important;
    background: #3BAC65 !important;
    color: #C4FFD9 !important;
}

/* Forçar em elementos específicos do React */
#root > div,
#root > div > div,
body > div {
    background-color: #3BAC65 !important;
    background: #3BAC65 !important;
    color: #C4FFD9 !important;
}
