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

::-webkit-scrollbar-track {
    background: #16213e;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #7c4dff;
}

/* Crypto Tooltip */
.crypto-tooltip {
    position: relative;
    color: #64b5f6;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 2px;
}

.crypto-tooltip::after {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 62, 0.95);
    color: #e5e5e5;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(100, 181, 246, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.crypto-tooltip::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(30, 30, 62, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.crypto-tooltip:hover::after,
.crypto-tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

