| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply bg-gray-950 text-gray-100 font-sans antialiased selection:bg-blue-600 selection:text-white; | |
| } | |
| } | |
| /* Minimalist Professional Box Styling */ | |
| @layer utilities { | |
| .border-box-dark { | |
| @apply border border-gray-800 dark:border-gray-800 bg-gray-900/90; | |
| } | |
| } | |
| /* Custom sleek scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #030712; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #1f2937; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #374151; | |
| } | |