@tailwind base; @tailwind components; @tailwind utilities; /* Custom styles for the trading dashboard */ body { margin: 0; padding: 0; box-sizing: border-box; } /* Scrollbar styling for dark theme */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #374151; } ::-webkit-scrollbar-thumb { background: #6b7280; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #9ca3af; } /* Custom button hover effects */ .btn-hover:hover { transform: translateY(-1px); transition: all 0.2s ease-in-out; } /* Loading animation */ .loading-spinner { animation: spin 1s linear infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Trading card effects */ .trading-card { transition: all 0.3s ease-in-out; } .trading-card:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); }