.nll-breadcrumb {
    direction: rtl;
}

.nll-breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nll-breadcrumb li {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.nll-breadcrumb li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nll-breadcrumb li a:hover {
    color: #383C79;
}

.nll-breadcrumb li.active {
    font-weight: 600;
    color: #383C79;
}

.nll-breadcrumb li.separator {
    margin: 0 10px;
    color: #666;
}

@media (max-width: 768px) {
    .nll-breadcrumb {
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nll-breadcrumb ul {
        flex-wrap: nowrap;
    }

    .nll-breadcrumb li {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .nll-breadcrumb li:last-child {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nll-breadcrumb li:last-child,
    .nll-breadcrumb li:last-child a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        max-width: 100%;
    }
}
