
/* Breadcrumb */
.breadcrumb {
    background-color: white;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    height: 36px;
}

.breadcrumb-items {
    display: flex;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item {
    color: #666;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin: 0 10px;
    color: #999;
}

.breadcrumb-item:last-child {
    color: #333;
    font-weight: 500;
}
