/* Fiyat değişimi için flash animasyonları */
@keyframes flash-green {
    0% { color: #ffd700; }
    50% { color: #2ecc71; }
    100% { color: #ffd700; }
}

@keyframes flash-red {
    0% { color: #ffd700; }
    50% { color: #e74c3c; }
    100% { color: #ffd700; }
}

.crypto-price.flash-green {
    animation: flash-green 1s ease;
}

.crypto-price.flash-red {
    animation: flash-red 1s ease;
}

/* Tablo hücresi için flash efektleri */
.flash {
    animation: flash-green 1s ease;
}
