/* NOTIFY GLOBAL - BOARD HOSTING */

.notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notify {
    padding: 14px 18px;
    border-radius: 12px;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    animation: notifyIn .35s ease forwards;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notify.success {
    border-left: 4px solid #3cf07b;
}

.notify.error {
    border-left: 4px solid #ff4d4d;
}

.notify.warning {
    border-left: 4px solid #f5d742;
}

.notify.info {
    border-left: 4px solid #9787f4;
}

.notify i {
    font-size: 18px;
}

@keyframes notifyIn {
    from {
        transform: translateX(80px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notifyOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(80px);
        opacity: 0;
    }
}