/* Bildirim Animasyonları */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Bildirim Dropdown İyileştirmeleri */
.notification-item {
    transition: all 0.2s ease;
}

.notification-item:hover {
    background-color: #f8f9fa !important;
    transform: translateX(5px);
}

.notification-item.fw-bold {
    border-left: 3px solid #0d6efd;
}

/* Bildirim Türü İkonları */
.notification-item .fas {
    font-size: 1.1rem;
}


