/* WondarCore — código propio, no generado. Se puede modificar libremente. */

.not-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.not-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.not-hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.not-activar-btn {
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--color-borde, #ddd);
  background: var(--color-primario, #1a73e8);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.not-activar-btn--activo {
  background: transparent;
  color: var(--color-texto-secundario, #666);
  border-color: var(--color-borde, #ddd);
  cursor: default;
}

.not-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.not-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: var(--color-superficie, #fff);
  border: 1px solid var(--color-borde, #eee);
  text-decoration: none;
  color: inherit;
  min-height: 3.5rem;
}

.not-avatar {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--color-borde, #ddd);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-texto-secundario, #666);
}

.not-item-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.not-item-texto {
  font-size: 0.95rem;
  line-height: 1.3;
}

.not-item-texto--no-leida {
  font-weight: 700;
}

.not-item-fecha {
  font-size: 0.8rem;
  color: var(--color-texto-secundario, #888);
}

.not-item-dot {
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primario, #1a73e8);
}

.not-empty {
  text-align: center;
  color: var(--color-texto-secundario, #888);
  padding: 2rem 1rem;
}

.not-ver-todas {
  align-self: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primario, #1a73e8);
  text-decoration: none;
}

.not-ver-todas:hover {
  text-decoration: underline;
}

/* Paginado — /xx/notifications (notificaciones-listado-publico.js) */
.not-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.not-pag-btn {
  background: var(--color-superficie, #fff);
  border: 1.5px solid var(--color-borde, #e5e7eb);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
}

.not-pag-btn:hover:not(:disabled) { border-color: var(--color-primario, #1a73e8); color: var(--color-primario, #1a73e8); }
.not-pag-btn:disabled { color: #ccc; border-color: #f0f0f0; cursor: default; }

.not-pag-info {
  font-size: 0.82rem;
  color: var(--color-texto-secundario, #888);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .not-wrapper {
    padding: 2.5rem 1.5rem 4rem;
  }
}
