.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    z-index: 9999;
}

/* Top-center notification */
.notification-toast {
    position: relative;
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    z-index: 9999;
    font-size: 15px;
    min-width: 250px;
    justify-content: center;
}

/* When visible */
.notification-toast.show {
    opacity: 1;
}

/* Icon styling */
.notification-icon {
    font-size: 18px;
}