/* painel/estaticos/estilo.css — estilo mínimo, servido de 'self' (CSP §8.3).
   Sem framework: a fila matinal é formulário e tabela, não app (convencoes §10). */
:root { font-family: system-ui, -apple-system, sans-serif; color-scheme: light dark; }
body { margin: 0; max-width: 60rem; padding: 0 1rem 4rem; margin-inline: auto; line-height: 1.45; }
nav.topo { display: flex; gap: 1rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid #8884; }
nav.topo a { text-decoration: none; font-weight: 600; }
nav.topo form.sair { margin-left: auto; }
main { padding-top: 1rem; }
h1 { font-size: 1.3rem; } h2 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: .35rem .5rem; border-bottom: 1px solid #8883; vertical-align: top; }
.card { border: 1px solid #8885; border-radius: .5rem; padding: .7rem .9rem; margin: .6rem 0; }
.card:focus { outline: 3px solid #4a90d9; }
.card .meta { font-size: .82rem; opacity: .75; }
.card pre { white-space: pre-wrap; word-break: break-word; font-size: .82rem; background: #8881; padding: .4rem; border-radius: .3rem; max-height: 8rem; overflow: auto; }
.card form { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
button { padding: .35rem .8rem; border-radius: .4rem; border: 1px solid #8887; cursor: pointer; }
button[value="concluir"], button.principal { font-weight: 700; }
.contadores { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1rem 0; }
.contadores a { border: 1px solid #8885; border-radius: .5rem; padding: .6rem .9rem; text-decoration: none; min-width: 7.5rem; }
.contadores .n { display: block; font-size: 1.6rem; font-weight: 700; }
.aviso { border-left: 4px solid #d9a62e; padding: .4rem .8rem; background: #d9a62e14; }
.erro { border-left: 4px solid #d9534f; padding: .4rem .8rem; background: #d9534f14; }
.dica { font-size: .8rem; opacity: .7; }
form.login { display: grid; gap: .6rem; max-width: 22rem; margin-top: 2rem; }
input[type="password"] { padding: .45rem; font-size: 1rem; }
