.fc-noti-page{ display:grid; gap:14px; }
.fc-noti-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.fc-noti-title{ margin:0; font-size:28px; line-height:1.1; }
.fc-noti-sub{ margin-top:6px; color: var(--muted); font-size: 13px; }

.fc-noti-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.fc-noti-card{ padding:0; overflow:hidden; }

.fc-noti-list{ display:block; }
.fc-noti-empty{ padding:14px 16px; color: var(--muted); }

.fc-noti-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border-bottom:1px solid var(--divider);
  cursor:pointer;
}
.fc-noti-item:hover{ background: rgba(255,255,255,.04); }
:root[data-theme="light"] .fc-noti-item:hover{ background: rgba(0,0,0,.04); }

.fc-noti-item.is-read{ opacity:.72; }

.fc-noti-ico{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid var(--field-border);
  background: var(--field-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.fc-noti-meta{ min-width:0; }
.fc-noti-line1{ font-weight:900; }
.fc-noti-line2{ margin-top:2px; font-size:12px; color: var(--muted); }

.fc-noti-dot{
  width:9px; height:9px;
  border-radius:999px;
  background: rgba(255,59,59,.95);
  box-shadow: 0 0 10px rgba(255,59,59,.25);
  margin-left:auto;
  margin-top:6px;
  flex:0 0 auto;
}
.fc-noti-item.is-read .fc-noti-dot{ display:none; }

.fc-noti-foot{
  padding:12px 14px;
  display:flex;
  justify-content:center;
}