* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; margin: 0; background: #f4f5f7; color: #1a1a1a; }
header { background: #14532d; color: white; padding: 16px 24px; }
header h1 { margin: 0; font-size: 20px; }
.subtitulo { margin: 4px 0 0; font-size: 13px; opacity: 0.85; }
main { padding: 24px; max-width: 1100px; margin: 0 auto; }

#lista-solicitacoes { display: flex; flex-direction: column; gap: 8px; }
.item-solicitacao {
  background: white; border: 1px solid #ddd; border-radius: 6px; padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.item-solicitacao:hover { border-color: #14532d; }
.badge { padding: 2px 8px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.badge-bandeiras { background: #fee2e2; color: #991b1b; }
.badge-ok { background: #dcfce7; color: #166534; }

#btn-voltar { background: none; border: none; color: #14532d; cursor: pointer; font-size: 14px; padding: 0 0 12px; }

.aviso { padding: 10px 14px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
.aviso.pendente { background: #fef3c7; color: #92400e; }
.aviso.pronto { background: #dcfce7; color: #166534; }

.documento-card { background: white; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 16px; overflow: hidden; }
.documento-header { background: #f0fdf4; padding: 10px 16px; font-weight: 600; border-bottom: 1px solid #ddd; }
.documento-body { display: flex; gap: 16px; padding: 16px; }
.documento-visualizacao { flex: 1; min-width: 0; }
.documento-visualizacao img, .documento-visualizacao iframe { width: 100%; max-height: 480px; border: 1px solid #eee; border-radius: 4px; }
.documento-campos { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }

.campo-linha { border: 1px solid #eee; border-radius: 6px; padding: 8px 10px; }
.campo-linha.pendente { border-color: #f59e0b; background: #fffbeb; }
.campo-nome { font-size: 12px; color: #555; display: flex; justify-content: space-between; }
.confianca { font-size: 11px; padding: 1px 6px; border-radius: 8px; }
.confianca-alta { background: #dcfce7; color: #166534; }
.confianca-media { background: #fef3c7; color: #92400e; }
.confianca-baixa { background: #fee2e2; color: #991b1b; }
.campo-valor-linha { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.campo-valor-linha input[type="text"] { flex: 1; padding: 4px 6px; }

.bandeiras-lista { padding: 0 16px 16px; font-size: 13px; }
.bandeira-item { color: #991b1b; margin-bottom: 4px; }
.bandeira-item.severidade-media { color: #92400e; }

.acoes-finais { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 16px; }
.acao-rejeitar, .acao-aprovar { display: flex; gap: 8px; }
input { border: 1px solid #ccc; border-radius: 4px; padding: 6px 8px; }
button { border: none; border-radius: 4px; padding: 8px 14px; cursor: pointer; font-size: 14px; }
.btn-sucesso { background: #14532d; color: white; }
.btn-perigo { background: #991b1b; color: white; }
button:disabled { opacity: 0.5; cursor: not-allowed; }
