/* tailwind.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom classes used in dashboard */
.p-4 { padding: 1rem; }
.bg-gray-100 { background-color: #f7fafc; }
.min-h-screen { min-height: 100vh; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.bg-white { background-color: #fff; }
.rounded { border-radius: 0.25rem; }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }