/*
 * app.css — Estilos globais do projeto
 * TODO: Adicione os estilos específicos do projeto aqui
 */

:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    /* font-family e color são definidos pelo tema dinâmico em cada layout */
}

/* Navbar ativo */
.navbar-nav .nav-item.active > .nav-link {
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

/* Cards — border-radius definido pelo tema dinâmico em cada layout */

/* Tabelas responsivas */
.table-hover tbody tr:hover {
    background-color: #f1f5f9;
}

/* Badges de status */
.badge-ativo    { background-color: #d1fae5; color: #065f46; }
.badge-inativo  { background-color: #fee2e2; color: #991b1b; }
.badge-pendente { background-color: #fef3c7; color: #92400e; }
