/* Breadcrumb 導航 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .divider {
  margin: 0 8px;
  color: #6c757d;
}

.breadcrumb .current {
  color: #495057;
  font-weight: 600;
}