/* container hanya sebagai wrapper */
.notificationBox-div {
    position: fixed;
    top: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1055;

    pointer-events: none; /* 🔥 tembus klik */
}

.notificationBox-box {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 320px;
    background: #fff;
    border: 2px solid #bfbfbf;
    border-radius: 12px;
    padding: 14px 16px;
    z-index: 1055; /* di atas modal */

    /* shadow */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.notificationBox-title {
    font-weight: 600;
    color: #9d9d9d;
    margin-bottom: 4px;
}

.notificationBox-time {
    font-size: 0.85rem;
    color: #c4c4c4;
    margin-bottom: 8px;
}

.notificationBox-body {
    font-size: 0.9rem;
    color: #9d9d9d;
    line-height: 1.4;
}

.notificationBox-box {
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
