/* Breadcrumbs */
.breadcrumbs-wrapper {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.breadcrumbs {
    font-size: 12px; /* Small text as requested */
    color: #666;
}

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

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #ccc;
}

.breadcrumbs__link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs__link:hover {
    color: #F73859; /* Matching primary color */
    text-decoration: underline;
}

.breadcrumbs__item--current {
    color: #999;
    pointer-events: none;
}
