.inoforest-breadcrumb {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
}

.inoforest-breadcrumb .breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.inoforest-breadcrumb .breadcrumb-list[style*="justify-content: center"] {
    justify-content: center;
}

.inoforest-breadcrumb .breadcrumb-list[style*="justify-content: right"] {
    justify-content: flex-end;
}

.inoforest-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.inoforest-breadcrumb .breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 8px;
    border-radius: 4px;
}

.inoforest-breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}

.inoforest-breadcrumb .current-page {
    font-weight: 600;
    color: #333333;
}

.inoforest-breadcrumb .separator {
    display: inline-block;
    margin: 0 10px;
    color: #999999;
    font-size: 16px;
    line-height: 1;
}

.inoforest-breadcrumb .home-icon {
    margin-right: 5px;
    color: #0073aa;
    font-size: 16px;
    line-height: 1;
}



.inoforest-breadcrumb .breadcrumb-item:last-child .separator {
    display: none;
}

@media (max-width: 768px) {
    .inoforest-breadcrumb .breadcrumb-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .inoforest-breadcrumb .breadcrumb-list[style*="justify-content: center"] {
        align-items: center;
    }
    
    .inoforest-breadcrumb .breadcrumb-list[style*="justify-content: right"] {
        align-items: flex-end;
    }
    
    .inoforest-breadcrumb .separator {
        display: none;
    }
    
    .inoforest-breadcrumb .breadcrumb-item {
        margin-bottom: 5px;
    }
    
    .inoforest-breadcrumb .breadcrumb-item:last-child {
        margin-bottom: 0;
    }
}



