| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| line-height: 1.6; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #888; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #555; | |
| } | |
| /* Animation for cards */ | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(10px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .bg-white { | |
| animation: fadeIn 0.5s ease-out forwards; | |
| } | |
| /* Delay animations for grid items */ | |
| .bg-white:nth-child(1) { animation-delay: 0.1s; } | |
| .bg-white:nth-child(2) { animation-delay: 0.2s; } | |
| .bg-white:nth-child(3) { animation-delay: 0.3s; } | |
| /* Chart container styling */ | |
| .chart-container { | |
| position: relative; | |
| height: 400px; | |
| width: 100%; | |
| } | |
| /* Tooltip styling for charts */ | |
| .chart-tooltip { | |
| position: absolute; | |
| background: rgba(0, 0, 0, 0.8); | |
| color: white; | |
| padding: 5px 10px; | |
| border-radius: 3px; | |
| pointer-events: none; | |
| z-index: 100; | |
| font-size: 12px; | |
| transform: translate(-50%, 0); | |
| } | |