/* Kole UI NotificationPro 样式 — 对齐 组件7.txt NotificationPro：右上角通知，标题+描述+图标，可关闭 */

.kole-notification-wrap { position: fixed; top: 16px; right: 16px; z-index: 3000; width: 320px;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
  font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); }
.kole-notification { pointer-events: auto; background: var(--kole-color-card-bg); border: 1px solid var(--kole-color-border); border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); padding: 14px 16px; display: flex; gap: 10px; }
.kole-notification-icon { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; color: var(--kole-color-text-inverse); font-size: 12px; text-align: center; line-height: 18px; margin-top: 2px; }
.kole-notification.is-success .kole-notification-icon { background: var(--kole-color-success); }
.kole-notification.is-error .kole-notification-icon { background: var(--kole-color-error); }
.kole-notification.is-warning .kole-notification-icon { background: var(--kole-color-warning); }
.kole-notification.is-info .kole-notification-icon { background: var(--kole-color-brand); }
.kole-notification-body { flex: 1; }
.kole-notification-title { font-size: 14px; font-weight: 500; color: var(--kole-color-text-title); }
.kole-notification-desc { font-size: 13px; color: var(--kole-color-text-secondary); margin-top: 4px; line-height: 1.5; }
.kole-notification-close { color: var(--kole-color-text-secondary); cursor: pointer; font-size: 14px; line-height: 1; }
