/**
 * Numex AI - Bildirimler
 */
#n-notifications {
  position: absolute;
  inset: 0;
  z-index: 435;
  display: flex;
  flex-direction: column;
  background: var(--n-bg, #09090B);
  overflow: hidden;
}

.n-not-header {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--n-bd);
}
.n-not-header.no-border { border-bottom: none; padding: 14px 14px 0; }
.n-not-header .n-btn {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--n-s2);
  border: 1px solid var(--n-bd);
  color: var(--n-t2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.n-not-header .n-btn.danger { color: #F87171; }
.n-not-header h2 { flex: 1; font-size: 15px; font-weight: 600; margin: 0; text-align: center; }
.n-not-header .badge {
  padding: 2px 7px;
  border-radius: 8px;
  background: var(--n-ac);
  font-size: 11px;
  font-weight: 700;
  color: #09090B;
}

.n-not-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  overflow-x: auto;
  padding: 0 14px 12px;
  -webkit-overflow-scrolling: touch;
}
.n-not-filter-btn {
  padding: 7px 14px;
  border-radius: 10px;
  white-space: nowrap;
  background: var(--n-s2);
  border: 1px solid var(--n-bd);
  color: var(--n-t2);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.n-not-filter-btn.sel { background: var(--n-acs); border-color: rgba(196,169,98,0.2); color: var(--n-ac); }

.n-not-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.n-not-group-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--n-tm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px 4px;
}

.n-not-item {
  display: flex;
  gap: 12px;
  padding: 13px 18px;
  cursor: pointer;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.n-not-item.read { background: transparent; border-left: 3px solid transparent; }
.n-not-item.unread { border-left: 3px solid var(--n-not-color); }
.n-not-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.n-not-item-body { flex: 1; min-width: 0; }
.n-not-item-title { font-size: 13.5px; line-height: 1.3; display: flex; align-items: flex-start; gap: 8px; }
.n-not-item-title .text { flex: 1; }
.n-not-item-title .text.unread { font-weight: 700; }
.n-not-item-title .text.read { font-weight: 500; }
.n-not-item-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.n-not-item-desc {
  font-size: 12px;
  color: var(--n-tm);
  line-height: 1.4;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.n-not-item-meta { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.n-not-item-time { font-size: 11px; color: var(--n-tm); }
.n-not-item-action {
  font-size: 11px;
  font-weight: 600;
  color: var(--n-ac);
  padding: 2px 8px;
  border-radius: 5px;
  background: var(--n-acs);
}

.n-not-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  padding: 32px;
}
.n-not-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--n-s1);
  border: 1px solid var(--n-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.n-not-empty-title { font-size: 15px; font-weight: 600; }
.n-not-empty-desc { font-size: 13px; color: var(--n-tm); text-align: center; }

.n-not-clear-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: rgba(248,113,113,0.04);
  border: 1px solid rgba(248,113,113,0.1);
  color: #F87171;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 18px;
  -webkit-tap-highlight-color: transparent;
}

/* Detail view */
.n-not-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 20px;
}
.n-not-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}
.n-not-detail h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.n-not-detail p { font-size: 14px; color: var(--n-t2); line-height: 1.6; text-align: center; }
.n-not-detail-time { font-size: 12px; color: var(--n-tm); }
.n-not-detail-action {
  padding: 12px 32px;
  border-radius: 12px;
  background: var(--n-grad);
  border: none;
  color: #09090B;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px var(--n-acg);
  margin-top: 8px;
  -webkit-tap-highlight-color: transparent;
}

.n-not-toast {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 18px;
  background: var(--n-s3);
  border: 1px solid var(--n-bds);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  z-index: 200;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  white-space: nowrap;
}
