.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: rgb(0, 92, 197);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}


/* Estilo para o hover nas linhas */
tbody tr:hover {
    background-color: #f1f1f1;
}

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
    .categoria {
        font-size: 1.2em;
        padding: 6px;
    }

    table th, table td {
        padding: 6px;
        font-size: 0.75em;
    }

    .tabela {
        font-size: 0.85em;
        margin-bottom: 10px;
    }
}
