body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8; /* Light blue-gray background */
}
/* Custom scrollbar for table */
.table-container::-webkit-scrollbar {
    height: 8px;
}
.table-container::-webkit-scrollbar-track {
    background: #e2e8f0; /* Light gray track */
    border-radius: 10px;
}
.table-container::-webkit-scrollbar-thumb {
    background: #94a3b8; /* Gray thumb */
    border-radius: 10px;
}
.table-container::-webkit-scrollbar-thumb:hover {
    background: #64748b; /* Darker gray on hover */
}
/* Active tab styling */
.tab-button.active {
    background-color: #2563eb; /* Blue-600 */
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}