/* Custom Breadcrumb Styles */
.custom-breadcrumb {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.custom-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.custom-breadcrumb a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.custom-breadcrumb i {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0 5px;
}

.custom-breadcrumb strong {
    color: var(--text-dark);
    font-weight: 700;
}