.breadcrumb ol {
display: flex;
list-style: none;
padding: 0;
margin: 0;
flex-wrap: wrap;
align-items: center;
}
.breadcrumb li {
display: flex;
align-items: center;
font-size: 14px;
color: #64748b;
}
.breadcrumb li:not(:last-child)::after {
content: '/';
margin: 0 8px;
color: #94a3b8;
}
.breadcrumb a {
text-decoration: none;
color: #3b82f6;
transition: color 0.2s;
}
.breadcrumb a:hover {
text-decoration: underline;
color: #3b82f6; /* Or darker shade */
}
.breadcrumb span[aria-current="page"] {
color: #1e293b;
font-weight: 600;
}