.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  overflow-y: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: transparent;
}

.breadcrumb::-webkit-scrollbar-thumb {
  background: var(--accent-pink-dark);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.breadcrumb::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink-light);
}

.breadcrumb::-webkit-scrollbar-track {
  background: transparent;
}

.breadcrumb:hover::-webkit-scrollbar-thumb {
  background: var(--accent-pink-light);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  flex: none;
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: var(--accent-pink-light);
}

.breadcrumb span {
  margin: 0 0.5rem;
  flex: none;
  white-space: nowrap;
}

.breadcrumb span:nth-last-child(1) {
  color: var(--pink-primary);
}
