/* ===================== NOTIFICATION CENTER ===================== */
.notif-bell-wrap{position:relative;display:inline-flex}
.notif-badge{
  position:absolute;top:-4px;right:-4px;
  background:#ef4444;color:#fff;font-size:8px;font-weight:700;
  width:16px;height:16px;border-radius:50%;display:none;
  align-items:center;justify-content:center;border:1.5px solid var(--bg1);
  font-family:monospace;pointer-events:none;
}
.notif-badge.show{display:flex}

/* Dropdown */
.notif-center{
  position:fixed;top:54px;right:8px;width:320px;max-height:480px;
  background:var(--bg1);border:1.5px solid var(--bdr2);border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,.6);z-index:850;display:none;
  flex-direction:column;overflow:hidden;
}
.notif-center.open{display:flex}
.notif-center-hdr{
  padding:10px 14px;border-bottom:1px solid var(--bdr);
  display:flex;align-items:center;gap:8px;flex-shrink:0;
}
.notif-center-title{font-size:11px;font-weight:700;flex:1;color:var(--txt0)}
.notif-clear-btn{
  font-size:9px;color:var(--txt2);background:none;border:none;
  cursor:pointer;padding:2px 6px;border-radius:4px;transition:.15s;
}
.notif-clear-btn:hover{color:var(--orange);background:var(--bg3)}
.notif-list{flex:1;overflow-y:auto;padding:6px}
.notif-empty{
  padding:28px;text-align:center;font-size:11px;
  color:var(--txt3);font-family:'Press Start 2P';line-height:2;
}
.notif-item{
  display:flex;gap:10px;padding:9px 10px;border-radius:8px;
  margin-bottom:3px;cursor:pointer;transition:.15s;
  border:1px solid transparent;position:relative;
}
.notif-item:hover{background:var(--bg3);border-color:var(--bdr)}
.notif-item.unread{background:rgba(124,58,237,.06);border-color:rgba(124,58,237,.15)}
.notif-item.unread::before{
  content:'';position:absolute;left:4px;top:50%;transform:translateY(-50%);
  width:5px;height:5px;border-radius:50%;background:var(--purple);
}
.notif-ico{font-size:16px;flex-shrink:0;line-height:1.4}
.notif-body{flex:1;min-width:0}
.notif-title{font-size:11px;font-weight:600;color:var(--txt0);margin-bottom:2px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.notif-desc{font-size:10px;color:var(--txt1);line-height:1.4;
  font-family:'Noto Sans Lao',sans-serif;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.notif-time{font-size:9px;color:var(--txt3);margin-top:3px;font-family:monospace}

/* Type color accents */
.notif-item[data-type="task"]   .notif-ico{color:#22c55e}
.notif-item[data-type="ai"]     .notif-ico{color:var(--cyan)}
.notif-item[data-type="whatsapp"].notif-ico{color:#25d166}
.notif-item[data-type="system"] .notif-ico{color:var(--gold)}
.notif-item[data-type="error"]  .notif-ico{color:var(--orange)}
