* { box-sizing: border-box; }
body {
  font-family: -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  background: #f4f5f7;
  color: #1c2024;
}
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1c2024;
  color: white;
  padding: 12px 24px;
}
.topo nav { display: flex; align-items: center; gap: 12px; }
.usuario-nome { font-size: 13px; color: #c9cdd3; }
.conteudo { max-width: 960px; margin: 24px auto; padding: 0 16px; }
h1 { font-size: 20px; margin-bottom: 16px; }
h2 { font-size: 16px; }
.card {
  background: white;
  border: 1px solid #e2e4e8;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.card-estreito { max-width: 360px; margin: 60px auto; }
.form-vertical { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.form-linha { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.form-linha-compacta { display: flex; gap: 6px; }
label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: #555; }
input, select {
  padding: 8px 10px;
  border: 1px solid #cfd3d9;
  border-radius: 6px;
  font-size: 14px;
}
button { cursor: pointer; }
.btn-primario {
  background: #2563eb;
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}
.btn-aprovar { background: #16a34a; color: white; border: none; padding: 9px 16px; border-radius: 6px; }
.btn-reprovar { background: #dc2626; color: white; border: none; padding: 9px 16px; border-radius: 6px; }
.link-btn { background: none; border: none; color: #2563eb; text-decoration: underline; padding: 0; font-size: 13px; }
.acoes { display: flex; gap: 10px; }
.tabela-simples { width: 100%; border-collapse: collapse; font-size: 13px; }
.tabela-simples th, .tabela-simples td { text-align: left; padding: 6px 8px; border-bottom: 1px solid #eee; }
.tabela-lista thead th { border-bottom: 2px solid #ddd; color: #555; }
.badge { padding: 2px 8px; border-radius: 999px; font-size: 12px; }
.badge-pendente { background: #fef3c7; color: #92400e; }
.badge-aprovado { background: #dcfce7; color: #166534; }
.badge-reprovado { background: #fee2e2; color: #991b1b; }
.alerta-erro { background: #fee2e2; color: #991b1b; padding: 8px 12px; border-radius: 6px; }
.texto-mutado { color: #777; font-size: 13px; }
