/* ============================================================
   QAD Calidad — Notificaciones
   Panel/lista de notificaciones (topbar y pantalla completa).
   ============================================================ */

.notif-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-border-row);
}
.notif-list-header-title { font-size: 0.8rem; font-weight: 600; color: var(--color-text-body); }
.notif-mark-all-btn { background: none; border: none; font-size: 0.72rem; color: var(--color-accent); cursor: pointer; }

.notif-row { padding: 0.625rem 1rem; border-bottom: 1px solid var(--color-border-row); }
.notif-row-unread { background: var(--color-info-bg); }
.notif-row-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.notif-row-body { flex: 1; min-width: 0; }
.notif-row-link { text-decoration: none; display: block; }
.notif-row-title { font-size: 0.8rem; color: var(--color-text); }
.notif-row-message { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 2px; }
.notif-row-time { font-size: 0.65rem; color: var(--color-text-faint); margin-top: 3px; }
.notif-mark-read-btn { background: none; border: none; color: var(--color-text-faint); cursor: pointer; font-size: 0.75rem; }

.notif-empty { text-align: center; padding: 2rem 1rem; color: var(--color-text-faint); font-size: 0.85rem; }
