/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Global Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom Transitions */
.bg-transition {
    transition: background-color 0.3s ease;
}

/* Crypto Table Styling */
.trend-up {
    position: relative;
    color: #10b981;
    padding-right: 16px;
}

.trend-up::after {
    content: '↑';
    position: absolute;
    right: 0;
}

.trend-down {
    position: relative;
    color: #ef4444;
    padding-right: 16px;
}

.trend-down::after {
    content: '↓';
    position: absolute;
    right: 0;
}