#notif-order-container {
    position: fixed;
    z-index: 9999;
}
#notif-order-container.left { left: 0; }
#notif-order-container.right { right: 0; }
#notif-order-container.top { top: 0; }
#notif-order-container.bottom { bottom: 0; }

.notif-order {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 14px 20px;
    margin: 10px;
    border-radius: 16px;
    font-size: 14px;
    color: #222;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    animation: bounceIn 0.6s ease-out;
}
.notif-order img.icon {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
