/* Tablo Animasyonları */
.table-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.table-row-hover {
    transition: all 0.3s ease;
}

.table-row-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Değer Değişim Animasyonları */
.value-change {
    transition: all 0.5s ease;
}

.value-up {
    color: #059669;
    transform: translateY(-3px);
}

.value-down {
    color: #DC2626;
    transform: translateY(3px);
}

.arrow {
    display: inline-block;
    font-weight: bold;
    margin-left: 4px;
} 