/* Exemplo: Se o estilo for 2, muda a cor do cabeçalho */
.table-style-2 thead {
    @apply bg-blue-50 text-blue-700;
}

/* Exemplo: Se o estilo for 3, remove as bordas verticais */
.table-style-3 td, .table-style-3 th {
    @apply border-none;
}
