/* Unique container for breadcrumbs */
.ea-custom-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Adjust the space between the items */
}

/* Individual breadcrumb item */
.ea-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

/* Link styling */
.ea-breadcrumb-link {
    text-decoration: none;
}

.ea-breadcrumb-link:hover {
    text-decoration: underline;
}

/* Non-link text styling */
.ea-breadcrumb-text {
}

/* Separator styling */
.ea-breadcrumb-separator {
    margin: 0 8px; /* Adjust the space around the separator */
}
