
/* Breadcrumbs Container - keeps your existing layout */
#breadcrumbs {
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* Links - only underline on hover, no color change */
#breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

#breadcrumbs a:hover {
    text-decoration: underline;
}

/* Your custom SVG separator with 180deg rotation */
#breadcrumbs .custom-separator {
    display: inline-flex;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 8'%3E%3Cpath fill='%23C1C5CD' d='M6.334 8 1.667 4l4.667-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

/* Current page item - keeps bold styling */
#breadcrumbs .breadcrumb_last {
    font-weight: 600;
}