/* ==========================================================================
   NOTIFICACIONES — PÁGINA COMPLETA (/user/notificaciones)
   Este SÍ va por stylesCss en la ruta, porque .notif-page-* solo se
   usa en esta página. Los estilos de la tarjeta en sí (.notif-card,
   .notif-btn, etc.) viven en notificaciones-dropdown.css (global),
   porque esa misma tarjeta también se usa en el dropdown de la campana.
   ========================================================================== */

.notif-page-container {
  max-width: 640px;
  margin: 24px auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, sans-serif;
}

.notif-page-header {
  margin-bottom: 12px;
}

.notif-page-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.notif-page-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.notif-page-tab {
  background: none;
  border: none;
  padding: 10px 2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.notif-page-tab:hover {
  color: #334155;
}

.notif-page-tab.active {
  color: var(--notif-primary);
  border-bottom-color: var(--notif-accent);
}

.notif-page-list {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.notif-page-list .notif-card {
  padding: 16px 18px;
}

.notif-page-list .notif-card:last-child {
  border-bottom: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
  .notif-page-container {
    margin: 12px auto;
  }
}