/* Shared Lumper app nav - same look across portal, checks, matcher */
.lumper-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  font-family: system-ui, -apple-system, sans-serif;
}
.lumper-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.lumper-nav a:hover {
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.1);
}
.lumper-nav a.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}
.lumper-nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #e2e8f0 !important;
  margin-right: 0.5rem;
}
.lumper-nav-logo:hover {
  color: #38bdf8 !important;
}
.lumper-nav-logo.active {
  color: #38bdf8 !important;
}
