buihao/timekeeper-pro-digital-gatekeeper
0
1/* Base Styles */2body {3 font-family: 'Inter', sans-serif;4}5 6/* Button Styles */7.btn-primary {8 @apply bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition duration-200;9}10 11.btn-secondary {12 @apply bg-gray-200 text-gray-700 px-4 py-2 rounded-lg hover:bg-gray-300 transition duration-200;13}14 15.btn-danger {16 @apply bg-red-600 text-white px-3 py-1 rounded hover:bg-red-700 transition duration-200;17}18 19.btn-warning {20 @apply bg-yellow-500 text-white px-3 py-1 rounded hover:bg-yellow-600 transition duration-200;21}22 23/* Table Styles */24/* Remove since we're handling this in JS now */25/* Custom Scrollbar */26::-webkit-scrollbar {27 width: 8px;28 height: 8px;29}30 31::-webkit-scrollbar-track {32 background: #f1f1f1;33}34 35::-webkit-scrollbar-thumb {36 background: #c1c1c1;37 border-radius: 4px;38}39 40::-webkit-scrollbar-thumb:hover {41 background: #a8a8a8;42}