.btn-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    list-style: none;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.btn-breadcrumb .btn {
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
    font-size: var(--oe-base-font-size, 14px);
    color: var(--oe-link-color, #3c8dbc);
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 0.25rem;
}

.btn-breadcrumb .btn:hover {
    background-color: #e7f3ff;
    color: #2a6496;
}

.btn-breadcrumb .btn:not(:last-child):after {
    content: "\f105"; /* fa-angle-right */
    font-family: FontAwesome;
    padding-left: 0.75rem;
    padding-right: 0.5rem;
    color: #6c757d;
    font-weight: normal;
}

.btn-breadcrumb .btn.disabled,
.btn-breadcrumb .btn:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

.btn-breadcrumb .btn i {
    margin-right: 0.25rem;
}

/* Override Bootstrap button styles within breadcrumb */
.btn-breadcrumb .btn.btn-default {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.btn-breadcrumb .btn.btn-default:hover {
    background-color: #e7f3ff;
}