| body { | |
| min-height: 100vh; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| /* Add smooth transitions for theme changes */ | |
| * { | |
| transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out; | |
| } | |
| /* Custom scrollbar for webkit browsers */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: rgba(255, 255, 255, 0.1); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: rgba(255, 255, 255, 0.2); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: rgba(255, 255, 255, 0.3); | |
| } |