/* Notification Badge Düzeltmeleri */
.notification-icon-wrapper {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -8px !important;
    right: -8px !important;
    background-color: #dc3545 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    padding: 0 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

/* Mobil için badge düzenlemesi */
@media (max-width: 576px) {
    .notification-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 10px !important;
        top: -6px !important;
        right: -6px !important;
    }
}

/* Badge animasyonu */
.notification-badge.new-notification {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
