/* Breadcrumb Widget Styles */
.bc-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bc-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.bc-breadcrumb a:hover {
    color: #00a0e9;
}

.bc-home-icon {
    display: inline-flex;
    align-items: center;
}

.bc-home-icon svg {
    fill: #666;
    transition: fill 0.3s;
}

.bc-breadcrumb a:hover .bc-home-icon svg {
    fill: #00a0e9;
}

.bc-separator {
    color: #999;
    font-size: 14px;
    user-select: none;
}

.bc-current {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
