/* Breadcrumb Styles for Header */
.breadcrumb-header {
    background: transparent;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 19px;
    font-weight: 400;
    border-radius: 0;
}

/* User name in header */
.user-name-header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #ffffff !important;
}

.breadcrumb-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 8px;
}

.breadcrumb-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.breadcrumb-header .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-header .text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.breadcrumb-header .text-white {
    color: #ffffff !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb-header {
        font-size: 17px;
    }
    
    .breadcrumb-header .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 6px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-header {
        font-size: 15px;
    }
}
