.custom-breadcrumbs {
  font-size: 13px;
  margin: 0.2rem 0 0.5rem 0;
  padding: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-transform: uppercase;
}

.custom-breadcrumbs a,
.custom-breadcrumbs a:link,
.custom-breadcrumbs a:visited {
  color: #ff4081 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
  font-weight: 400;
}

.custom-breadcrumbs a:hover,
.custom-breadcrumbs a:active {
  color: #f50057 !important;
  text-decoration: underline !important;
}

.custom-breadcrumbs a:focus {
  outline: 2px solid var(--md-primary-fg-color, #1976d2);
  outline-offset: 2px;
}

.custom-breadcrumbs span {
  color: #5f6368;
  font-weight: 400;
}

/* Chevron separator using CSS */
.custom-breadcrumbs a::after,
.custom-breadcrumbs span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  vertical-align: middle;
}

.custom-breadcrumbs span:last-child::after {
  content: none;
}

/* Dark mode support */
[data-md-color-scheme="slate"] .custom-breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
}

[data-md-color-scheme="slate"] .custom-breadcrumbs a::after,
[data-md-color-scheme="slate"] .custom-breadcrumbs span:not(:last-child)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
  opacity: 0.4;
}