body {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

/* Custom scrollbar for better aesthetics in table container */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.dark .table-container::-webkit-scrollbar-track {
    background: #1e293b;
}

.dark .table-container::-webkit-scrollbar-thumb {
    background: #475569;
}

.dark .table-container::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.dark .status-supported {
    color: #bbf7d0;
    background-color: #166534;
}

.dark .status-unsupported {
    color: #fecaca;
    background-color: #991b1b;
}

.dark .status-unknown {
    color: #cbd5e1;
    background-color: #475569;
}

.status-badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.status-supported {
    color: #166534;
    background-color: #dcfce7;
}

.status-unsupported {
    color: #991b1b;
    background-color: #fee2e2;
}

.status-unknown {
    color: #475569;
    background-color: #f1f5f9;
}
