/* Notification container */
#notifyStack {
    position: fixed;
    top: 140px;           /* 70px height header + 10px to be */
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

/* notification style */
.notify {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    color: #00ffff;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    cursor: pointer;
    font-family: monospace;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* notification style */
.notify.error-notification {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}


.notify.show {
    opacity: 1;
    transform: translateY(0);
}

.notify.hide {
    opacity: 0;
    transform: translateX(100%);
}