.categoria {
    color: #333;
    background-color: #eaeaea;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Estilo para a tabela */
.tabela 
{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
   overflow-x:     auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

table{
    width: 100%;
}

/* Estilo para as células da tabela */
table th, table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 0.9em;
    white-space:    nowrap;
}

/* Estilo para o cabeçalho da tabela */
thead th {
    background-color: #4CAF50;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

/* Estilo para as linhas pares */
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Estilo para as linhas ímpares */
tbody tr:nth-child(odd) {
    background-color: #fff;
}

/* Estilo para a primeira coluna (Classificação) */
table td:first-child {
    font-weight: bold;
    color: #333;
}

/* Estilo para os totais */
    .total {
    font-weight: bold;
    color: #4CAF50;
}

/* Estilo para o hover nas linhas */
tbody tr:hover {
    background-color: #f1f1f1;
}

}
