#notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notify {
    pointer-events: auto;
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: slideIn 0.25s ease;
    position: relative;
    font-family: system-ui, -apple-system, sans-serif;
}

.notify-icon {
    font-size: 18px;
    line-height: 1;
}

.notify-icon svg {
    width: 24px;
    height: 24px;
}

.notify-info .notify-icon svg{
    color: #909399;
}

.notify-success .notify-icon svg{
    color: #67c23a;
}

.notify-warning .notify-icon svg {
    color: #e6a23c;
}

.notify-error .notify-icon svg{
    color: #f56c6c;
}

.notify-content {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.notify-close {
    cursor: pointer;
    font-size: 16px;
    color: #999;
}

/*
.notify-success { border-left: 4px solid #67c23a; }
.notify-error   { border-left: 4px solid #f56c6c; }
.notify-warning { border-left: 4px solid #e6a23c; }
.notify-info    { border-left: 4px solid #409eff; }
*/

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
