/* Genel Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.3s ease-out;
}

/* Tablo Animasyonları */
.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background-color: rgba(26, 115, 232, 0.04);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
}

/* Kart Animasyonları */
.card-style {
    transition: all 0.3s ease;
}

.card-style:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.12);
}

/* Form Animasyonları */
.form-control {
    transition: all 0.2s ease;
}

.form-control:focus {
    transform: translateY(-2px);
}
