﻿/* Notification Container - Fixed position at top right */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

/* Individual notification item */
.notification-item {
    pointer-events: auto;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

/* Show animation */
.notification-item.show-notification {
    opacity: 1;
    transform: translateX(0);
}

/* Removing animation */
.notification-item.removing {
    opacity: 0;
    transform: translateX(400px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    #notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .notification-item {
        min-width: auto;
        width: 100%;
    }
}
