/* Breadcrumb Navigation Styles */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 2rem;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #97bf0d;
    text-decoration: underline;
}

.breadcrumb li:last-child span {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 0.3rem;
    }
}
