.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 20px;
    margin: 1rem 0;
    border-radius: 0.25rem;
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}

.breadcrumb-item {
    margin-right: 0.5rem;
    font-weight: 400 !important;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    text-decoration: none;
    color: black; /* Primary color */
    font-size: 16px !important;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item span {
    color: #6c757d;
    font-size: 16px !important;
    }

.breadcrumb-item::after {
    content: '>';
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: #adb5bd; /* Light grey for separator */
    font-size: 0.9rem;
}

.breadcrumb-item:last-child {
    font-weight: 700;
}

.breadcrumb-item:last-child a {
    color: #6c757d; /* Disable link for the last item */
    pointer-events: none;
    text-decoration: none;
}

.breadcrumb-item:last-child::after {
    content: '';
}
