  /* Únicos ajustes que não existem em style.css: largura maior para
     gráficos/tabela e um tamanho de fonte maior para o número do card. */
  .dash-cards-row,
  .dash-charts-row,
  .dash-tabela-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .resultado-grande {
    font-size: 1.6rem;
  }
  .dash-cards-row .container,
  .dash-charts-row .container {
    flex: 1 1 0;
    max-width: none;
  }
  .dash-tabela-row .container {
    flex: 1 1 100%;
    max-width: none;
  }
  .dash-grafico-wrap {
    position: relative;
    height: 260px;
    width: 100%;
  }
  @media (max-width: 700px) {
    .dash-cards-row .container,
    .dash-charts-row .container {
      flex: 1 1 100%;
    }
  }
