.report-container {
    width: 100%;
    font-family: Arial, sans-serif;
}

/* tabelas gerais */
.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* cabeçalho */
.report-table th {
    background: #f5f5f5;
    font-weight: 600;
    font-size: 14px;
}

/* células */
.report-table th,
.report-table td {
    border-bottom: 1px solid #eee;
    padding: 8px 10px;
    text-align: center;
    font-size: 13px;
}

/* remove última linha */
.report-table tr:last-child td {
    border-bottom: none;
}

/* classificação grande */
.indicators .classification {
    background: linear-gradient(135deg,#00bcd4,#1976d2);
    font-size: 22px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

/* tabela interna */
.inner-table th,
.inner-table td {
    border: none;
    padding: 4px 6px;
    font-size: 12px;
    text-align: left;
}

.inner-table th {
    color: #777;
}

/* valor total */
.total-receber {
    background: linear-gradient(135deg,#42a047,#2e7d32);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

/* resumo */
.summary th {
    background: #fafafa;
}

/*Titulos H3*/
.report-title{
    font-size:14px;
    font-weight:600;
    margin:10px 0 6px 4px;
    color:#444;
}
