.bansos-notification {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    max-width: 260px; /* 🔽 diperkecil */
    pointer-events: auto;
}

.notification-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px; /* 🔽 lebih kecil */
    padding: 8px 10px; /* 🔽 lebih kecil */
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* 🔥 lebih halus */
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.4s ease-out;
    position: relative;
    z-index: 9999;
    font-size: 12px; /* 🔽 kecilin global */
}

.notification-item img {
    width: 32px;  /* 🔽 dari 50 → 32 */
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-content {
    color: #000;
    line-height: 1.2;
}

.notification-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 12px; /* 🔽 kecil */
    color: #000;
}

.notification-amount {
    color: #28a745;
    font-size: 11px; /* 🔽 kecil */
}

/* Animasi masuk */
@keyframes slideIn {
    from {
        transform: translateX(80%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animasi keluar */
@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(80%);
        opacity: 0;
    }
}