.notify {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 240px;
    max-width: 320px;
    padding: 14px 40px 14px 16px;

    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;

    display: none;
    z-index: 9999;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    cursor: pointer;
    border: 2px solid;
    color: #1f2937;
    background: #f9fafb;
}

/* крестик */
.notify-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.notify-close:hover {
    opacity: 1;
}


.notify.success {
    background: #f0fdf4;
    border-color: #34d399;
}
.notify.error {
    background: #fef2f2;
    border-color: #f87171;
}
.notify.info {
    background: #eff6ff;
    border-color: #60a5fa;
}