h2, h3 {
    color: #333;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
}

/* Estilo para o contêiner das tabelas */
.table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

/* Estilo para as tabelas */
table {
    width: 80%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Estilo para o cabeçalho das tabelas */
th {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ddd;
}

/* Estilo para as células de dados */
td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Fundo alternado para as linhas */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Fundo para a primeira coluna, para destaque */
td:first-child {
    font-weight: bold;
    background-color: #f9f9f9;
}

/* Efeito de hover nas linhas */
tr:hover {
    background-color: #e0f7fa;
}

/* Estilo para as bordas arredondadas das tabelas */
table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.positive {
    color: #99e29b; /* Verde para valores positivos */
    font-weight: bold;
}
.negative {
    color: #d69592; /* Vermelho para valores negativos */
    font-weight: bold;
}

#graph {
    width: 85% !important;
    max-width: 85% !important;
}

table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto;
}


.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}