/* ═══════════════════════════════════════════════
   ADMIN PAGE - Quick Navigation styles
   ADD this to your existing admin.css
   (paste at the END of admin.css, don't replace)
   ═══════════════════════════════════════════════ */

/* Quick Navigation List */
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  margin-top: 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.nav-row:last-child { border-bottom: none; }
.nav-row:active { background: var(--bg3); }

.nav-row-l {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-row-ic {
  font-size: 22px;
  line-height: 1;
}

.nav-row-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
}

.nav-go-btn {
  background: linear-gradient(135deg, #1976d2, #0d47a1);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  pointer-events: none; /* row click handles navigation */
}
