'use client'; import { createTheme } from '@mui/material/styles'; export const adminTheme = createTheme({ palette: { mode: 'light', primary: { main: '#1976d2', // Professional blue contrastText: '#ffffff' }, secondary: { main: '#dc004e', }, background: { default: '#f5f5f5', paper: '#ffffff' }, grey: { 100: '#f5f5f5', 200: '#eeeeee', 300: '#e0e0e0', 400: '#bdbdbd', 500: '#9e9e9e' } }, typography: { fontFamily: ['Roboto', 'Arial', 'sans-serif'].join(','), h4: { fontWeight: 600, fontSize: '1.5rem' }, h6: { fontWeight: 500, fontSize: '1.125rem' } }, components: { MuiCard: { styleOverrides: { root: { boxShadow: '0 2px 8px rgba(0,0,0,0.1)', borderRadius: 8 } } } } });