.bansos-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 300px;
    pointer-events: auto;
}

.notification-item {
    background: rgba(255, 255, 255, 0.973);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 0px 7px rgb(0, 0, 0);
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-out;
    position: relative;
    z-index: 9999;
}

.notification-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.notification-content {
        color: #000; /* teks hitam */
    }

   .notification-name {
    font-weight: bold;
    margin-bottom: 2px;
    color: #000; /* hitam agar terlihat */
}

    .notification-amount {
    color: #28a745;
    font-size: 0.9em;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
} 