.breadcrumb-nav {
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #fff; /* separator color */
  margin: 0 8px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #007bff; /* link blue */
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #0056b3; /* darker blue on hover */
}

.breadcrumb-item.active {
  color: #fff; /* visible black text */
  font-weight: 600;
  pointer-events: none;
}