/* Breadcrumb Section Styles - Shared across pages */

.breadcrumb-section {
    background-color: #f2f1f0;
    padding: 0.75rem 0;
}

.breadcrumb-left {
    gap: 1rem;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger-icon span {
    width: 24px;
    height: 3px;
    background-color: #d00;
    display: block;
}

.breadcrumb-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.3;
    color: #333;
}

.breadcrumb-title strong {
    font-weight: 700;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
}

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

.breadcrumb-divider {
    color: #999;
    padding: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 0.75rem;
    }

    .hamburger-icon span {
        width: 20px;
        height: 2px;
    }
}
