#globalNotificationContainer {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 300px;
    z-index: 1060;
    overflow-y: auto;
    max-height: 300px;
    scrollbar-width: none; /* For Firefox */
}

#globalNotificationContainer::-webkit-scrollbar {
    display: none; /* For WebKit browsers like Chrome and Safari */
}

.global-notification {
    background: linear-gradient(to right, #007bff, #662d91);
    color: #ffffff;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.global-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.global-notification.hide {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-in, opacity 0.5s ease-in;
}
