:root {
    --primary: #0d6efd;
    --bg-card: #ffffff;
    --text: #212529;
    --bg-body: #f8f9fa;
}
body.claro {
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --text: #212529;
}
body.escuro {
    --bg-body: #1a1a2e;
    --bg-card: #16213e;
    --text: #e0e0e0;
}
body {
    background-color: var(--bg-body);
    color: var(--text);
}
.card {
    background-color: var(--bg-card);
    color: var(--text);
}

/* ----- Temas de cor (definem --primary usado na navbar, ícones, etc.) ----- */
body.tema-padrao   { --primary: #0d6efd; }
body.tema-azul     { --primary: #0a58ca; }
body.tema-vermelho { --primary: #dc3545; }
body.tema-verde    { --primary: #198754; }
body.tema-laranja  { --primary: #fd7e14; }
body.tema-roxo     { --primary: #6f42c1; }
body.tema-cinza    { --primary: #6c757d; }
body.tema-marrom   { --primary: #795548; }
body.tema-rosa     { --primary: #d63384; }