/* NEXA Forge — Bildirimler (Apple tarzı) */

.notif-layout { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }

#notif-list {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
#notif-list .empty-state { background: transparent; }

.notif-group-label {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 14px 18px 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.notif-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background var(--t-base);
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--surface-alt); }
[data-theme="dark"] .notif-item:hover { background: rgba(255,255,255,0.03); }
.notif-item.unread { background: var(--accent-soft); }

.notif-icon-wrap {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-icon-wrap .msr { font-size: 19px; }

.notif-body { flex: 1; min-width: 0; }
.notif-title {
  font-size: 13.5px; font-weight: 500; color: var(--text-primary);
  line-height: 1.4;
}
.notif-item.unread .notif-title { font-weight: 600; }
.notif-message {
  font-size: 12.5px; color: var(--text-secondary);
  margin-top: 2px; line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.notif-time {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-muted);
  margin-top: 4px;
}
.notif-time .msr { font-size: 12px; }

.unread-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .notif-item {
    padding: 12px 14px;
    gap: 10px;
  }
  .notif-icon-wrap {
    width: 34px;
    height: 34px;
  }
  .notif-icon-wrap .msr {
    font-size: 17px;
  }
  .notif-title {
    font-size: 13px;
  }
  .notif-message {
    font-size: 12px;
  }
  .notif-group-label {
    padding: 12px 14px 6px;
  }
}
