/* Breadcrumb Navigation Styles - Compact & Clean */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 1rem;
    flex-wrap: wrap;
    line-height: 1.5;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    font-weight: 400;
}

.breadcrumb-item:hover {
    color: #891bb8;
    transform: translateY(-1px);
}

.breadcrumb-item.is-current {
    color: #891bb8;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

.breadcrumb-icon {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    opacity: 0.8;
}

.breadcrumb-separator {
    color: #d1d5db;
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    padding: 0 0.2rem;
}

/* Integration with main header */
.main-header .header-left .breadcrumb-nav {
    order: -1;
    margin-top: 0;
    padding: 0;
    font-size: 0.82rem;
    line-height: 1;
    flex-wrap: nowrap;
}

/* Integration with section headers */
.section-header .breadcrumb-nav {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb-nav {
        font-size: 0.9rem;
        gap: 0.35rem;
    }
    
    .breadcrumb-icon {
        display: none;
    }
}

/* Dashboard breadcrumb: home-only state */
.breadcrumb-nav .dashboard-home-only {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0.65rem;
    background: rgba(37, 99, 235, 0.08);
    color: #64748b;
}

.breadcrumb-nav .dashboard-home-only:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
}
