body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.breadcrumb.chevron {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    background: black;
    color: white;
}

.breadcrumb.chevron .breadcrumb-item {
    position: relative;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    margin-right: 15px;
    transition: background 0.3s ease;
}

.breadcrumb.chevron .breadcrumb-item a {
    color: white;
    text-decoration: none;
    display: block;
}

.breadcrumb.chevron .breadcrumb-item:hover {
    background: #0056b3;
}

.breadcrumb.chevron .breadcrumb-item.active {
    background: #6c757d;
    pointer-events: none;
}

.breadcrumb.chevron .breadcrumb-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 30px;
    height: 100%;
    background: #007bff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 1;
}

.breadcrumb.chevron .breadcrumb-item.active::after {
    background: #6c757d;
}
