.table-container {
    @apply bg-gray-800 shadow overflow-hidden sm:rounded-lg;
}

.table-default {
    @apply min-w-full divide-y divide-gray-700;
}

.table-header {
    @apply px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider;
}

.table-row {
    @apply hover:bg-gray-700;
}

.table-row-divided {
    @apply divide-y divide-gray-700;
}

.table-cell {
    @apply px-6 py-4 whitespace-nowrap text-sm text-gray-300;
}

.table-link {
    @apply text-gray-300 hover:text-white;
} 