.breadcrumbs {
    /* position: relative;
    top: -10px; */
    height: var(--breadcrumbs-height, 20px);
    margin-bottom: 14px;

}

.breadcrumbs nav {
    margin-left: -12px!important;
    font-size: 0.9rem;
}

.arrow-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    /* margin: 20px 0; */
    margin: 0px!important;
}

.arrow-item {
    height: 25px;
    line-height: 40px;
    position: relative;
    /* left: -2px; */
    padding: 0 30px 0 25px;
    text-decoration: none;
    /* color: #666; */
    background-color: #dfe0e1;
    /* border: 1px solid #ddd; */
    border-right: none;
    display: flex;
    align-items: center;
    margin-right: -8px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
    /* border-left: 1px solid #ddd; */
    padding-left: 35px;
    z-index: 5;
}

.home {
    z-index: 4;
    display: inline-block;
    height: 25px;
    line-height: 40px;
    position: relative;
    /* padding: 0 30px 0 25px; */
    text-decoration: none;
    /* color: #666; */
    background-color: #ecedee;
    /* border: 1px solid #ddd; */
    border-right: none;
    display: flex;
    align-items: center;
    margin-right: -5px;
    padding-left: 10px;
    padding-right: 35px;
    width: 20px;
}

.home:hover {
    background-color: #dbdbdb;
    color: #333;
}

.arrow-item:first-child {
    display: none;
    padding-left: 43px;
    text-align: left;
    background-color: #ecedee;
    /* clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%); */
    width: 45px;
}

/* Add a special case for the first visible breadcrumb item (second child) */
.arrow-item:nth-child(2) {
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
    border-radius: 2px 0 0 2px;
    padding-left: 20px;
    border-radius: 6px! important;
}

.arrow-item:last-child {
    background-color: var(--color1);
    color: white;
    border-color: var(--color2);
    margin-right: 0;
}

.arrow-item:hover:not(:last-child) {
    background-color: #dbdbdb;
    color: #333;
}

/* Icon styling */
.arrow-breadcrumb .bi {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Animation for new items */
.arrow-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delay each item */
.arrow-item:nth-child(1) { animation-delay: 0.05s; }
.arrow-item:nth-child(2) { animation-delay: 0.1s; }
.arrow-item:nth-child(3) { animation-delay: 0.15s; }
.arrow-item:nth-child(4) { animation-delay: 0.2s; }
.arrow-item:nth-child(5) { animation-delay: 0.25s; }
.arrow-item:nth-child(6) { animation-delay: 0.3s; }
